
    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_76be8cbab0f7ced296ce7896.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_ec58b486b467e0d8a98540dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_8bba52282254e1652fe11587.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_fb1961407c5b5c92106574dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.125488;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_e90274ebacac28752a7df1f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_a4fe244414874d7c59591c55.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.283203;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_bb3ee1e5885c7d0c721cfcef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_0e4df222639dd31ce3d3008d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.125488;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_a90bc3556c1cdee9ec1aee63.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_6ea9140bc760cfa0b9d62863.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.099609;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_2cd7fddd5416e56d3c2b7b17.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.099609;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_4752bec98f6c5bcbbd1d3cd1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.fff{font-family:fff;line-height:0.682617;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_a6bdc11b7c415e16aa978cd6.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.100098;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_791a9cdc79e7aae0451b318c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.851562;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_74379fa7b9ee82739ae52bca.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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);}
.v0{vertical-align:0.000000px;}
.ls4a{letter-spacing:-1.992000px;}
.ls27{letter-spacing:-1.986000px;}
.ls20{letter-spacing:-1.782000px;}
.ls4d{letter-spacing:-1.650000px;}
.ls28{letter-spacing:-1.602000px;}
.ls1a{letter-spacing:-1.440000px;}
.ls32{letter-spacing:-1.392000px;}
.ls3e{letter-spacing:-1.164000px;}
.ls1d{letter-spacing:-1.110000px;}
.lse{letter-spacing:-1.026000px;}
.ls33{letter-spacing:-0.918000px;}
.ls50{letter-spacing:-0.852000px;}
.ls41{letter-spacing:-0.714000px;}
.ls42{letter-spacing:-0.636000px;}
.ls2{letter-spacing:-0.612000px;}
.ls30{letter-spacing:-0.582000px;}
.ls4{letter-spacing:-0.550200px;}
.ls34{letter-spacing:-0.544200px;}
.ls24{letter-spacing:-0.526800px;}
.ls58{letter-spacing:-0.495600px;}
.ls4c{letter-spacing:-0.452400px;}
.ls35{letter-spacing:-0.435000px;}
.ls53{letter-spacing:-0.363000px;}
.ls51{letter-spacing:-0.360000px;}
.ls3d{letter-spacing:-0.342600px;}
.ls8{letter-spacing:-0.328200px;}
.ls21{letter-spacing:-0.302400px;}
.ls49{letter-spacing:-0.299400px;}
.ls5b{letter-spacing:-0.294000px;}
.ls2e{letter-spacing:-0.288000px;}
.ls5a{letter-spacing:-0.259200px;}
.ls25{letter-spacing:-0.236400px;}
.ls14{letter-spacing:-0.224400px;}
.ls19{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.184200px;}
.lsc{letter-spacing:-0.164400px;}
.ls54{letter-spacing:-0.129600px;}
.ls3f{letter-spacing:-0.094800px;}
.ls13{letter-spacing:-0.017280px;}
.ls2f{letter-spacing:-0.011520px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.002880px;}
.ls10{letter-spacing:0.017280px;}
.ls12{letter-spacing:0.034560px;}
.lsf{letter-spacing:0.036000px;}
.ls57{letter-spacing:0.066000px;}
.ls1e{letter-spacing:0.112200px;}
.ls4b{letter-spacing:0.120000px;}
.ls3c{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.187200px;}
.ls2d{letter-spacing:0.195840px;}
.ls5{letter-spacing:0.210000px;}
.ls1f{letter-spacing:0.230400px;}
.ls11{letter-spacing:0.260640px;}
.ls45{letter-spacing:0.276600px;}
.ls39{letter-spacing:0.288000px;}
.ls59{letter-spacing:0.305400px;}
.lsb{letter-spacing:0.306600px;}
.ls38{letter-spacing:0.311040px;}
.ls55{letter-spacing:0.313800px;}
.ls40{letter-spacing:0.328200px;}
.ls56{letter-spacing:0.406200px;}
.lsd{letter-spacing:0.414600px;}
.lsa{letter-spacing:0.414720px;}
.ls4e{letter-spacing:0.423360px;}
.ls26{letter-spacing:0.438000px;}
.ls22{letter-spacing:0.454800px;}
.ls31{letter-spacing:0.455040px;}
.ls44{letter-spacing:0.486600px;}
.ls1b{letter-spacing:0.521400px;}
.ls23{letter-spacing:0.558600px;}
.ls46{letter-spacing:0.582000px;}
.ls0{letter-spacing:0.587520px;}
.ls6{letter-spacing:0.690000px;}
.ls52{letter-spacing:0.699840px;}
.ls9{letter-spacing:0.708480px;}
.ls43{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.936000px;}
.ls48{letter-spacing:1.560000px;}
.ls4f{letter-spacing:40.786560px;}
.ls37{letter-spacing:46.558560px;}
.ls2c{letter-spacing:50.544000px;}
.ls16{letter-spacing:51.269760px;}
.ls3b{letter-spacing:53.746560px;}
.ls2b{letter-spacing:57.565440px;}
.ls3a{letter-spacing:62.398560px;}
.ls47{letter-spacing:63.826560px;}
.ls36{letter-spacing:63.838560px;}
.ls15{letter-spacing:94.613760px;}
.ls18{letter-spacing:114.629760px;}
.ls1c{letter-spacing:847.642560px;}
.ls17{letter-spacing:1847.688480px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2c{word-spacing:-60.480000px;}
.wsf{word-spacing:-22.654080px;}
.wse{word-spacing:-21.703680px;}
.wsb{word-spacing:-21.703560px;}
.wsc{word-spacing:-21.288960px;}
.ws10{word-spacing:-20.684160px;}
.wsd{word-spacing:-20.262960px;}
.ws25{word-spacing:-19.872000px;}
.ws26{word-spacing:-19.584000px;}
.ws37{word-spacing:-19.512000px;}
.ws5{word-spacing:-17.261520px;}
.ws33{word-spacing:-17.179080px;}
.ws21{word-spacing:-17.130120px;}
.ws19{word-spacing:-17.092920px;}
.ws3b{word-spacing:-17.026320px;}
.ws24{word-spacing:-17.009520px;}
.ws40{word-spacing:-16.997880px;}
.ws1e{word-spacing:-16.922880px;}
.ws30{word-spacing:-16.899720px;}
.ws3a{word-spacing:-16.885320px;}
.ws34{word-spacing:-16.848120px;}
.ws1d{word-spacing:-16.804680px;}
.ws3{word-spacing:-16.781520px;}
.ws11{word-spacing:-16.761600px;}
.ws3c{word-spacing:-16.758480px;}
.ws14{word-spacing:-16.744320px;}
.ws15{word-spacing:-16.727040px;}
.ws12{word-spacing:-16.709760px;}
.wsa{word-spacing:-16.692480px;}
.ws20{word-spacing:-16.632000px;}
.ws6{word-spacing:-16.574400px;}
.ws4{word-spacing:-16.571520px;}
.ws27{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.502640px;}
.ws2f{word-spacing:-16.476720px;}
.ws17{word-spacing:-16.476480px;}
.ws39{word-spacing:-16.441920px;}
.ws41{word-spacing:-16.433280px;}
.ws1a{word-spacing:-16.407120px;}
.ws35{word-spacing:-16.393080px;}
.ws1f{word-spacing:-16.390080px;}
.ws23{word-spacing:-16.335120px;}
.ws13{word-spacing:-16.251840px;}
.ws7{word-spacing:-16.243320px;}
.ws3d{word-spacing:-16.240080px;}
.ws2d{word-spacing:-16.228920px;}
.ws38{word-spacing:-16.208520px;}
.ws3e{word-spacing:-16.196880px;}
.ws3f{word-spacing:-16.165680px;}
.ws2b{word-spacing:-16.136520px;}
.ws22{word-spacing:-16.044720px;}
.ws28{word-spacing:-15.989520px;}
.ws32{word-spacing:-15.935520px;}
.ws31{word-spacing:-15.857520px;}
.ws2a{word-spacing:-15.653520px;}
.ws1b{word-spacing:-15.461520px;}
.ws29{word-spacing:-15.179520px;}
.ws18{word-spacing:-15.131520px;}
.ws36{word-spacing:-14.921520px;}
.ws1c{word-spacing:-14.789520px;}
.ws9{word-spacing:-13.327080px;}
.ws0{word-spacing:-12.408480px;}
.ws2e{word-spacing:-0.060480px;}
.ws2{word-spacing:-0.054720px;}
.ws8{word-spacing:0.000000px;}
.ws1{word-spacing:0.129480px;}
._26{margin-left:-14.411520px;}
._23{margin-left:-12.362400px;}
._25{margin-left:-11.278560px;}
._2a{margin-left:-10.109280px;}
._22{margin-left:-9.042720px;}
._27{margin-left:-7.544160px;}
._24{margin-left:-5.924640px;}
._29{margin-left:-4.692480px;}
._30{margin-left:-3.556800px;}
._3{margin-left:-2.419200px;}
._2{margin-left:-1.224000px;}
._0{width:1.212480px;}
._1{width:2.360640px;}
._4{width:3.797760px;}
._7{width:5.781120px;}
._9{width:7.044480px;}
._8{width:8.058240px;}
._2f{width:9.146880px;}
._28{width:10.342080px;}
._2c{width:12.231360px;}
._2d{width:13.637280px;}
._2e{width:15.315840px;}
._33{width:18.279360px;}
._36{width:19.776960px;}
._31{width:20.819520px;}
._32{width:22.406400px;}
._14{width:23.568960px;}
._38{width:24.629760px;}
._39{width:25.974720px;}
._35{width:27.092160px;}
._34{width:28.379520px;}
._3e{width:29.545920px;}
._3d{width:30.723840px;}
._3f{width:32.767680px;}
._a{width:40.656960px;}
._3c{width:42.588000px;}
._3b{width:46.624800px;}
._3a{width:48.602880px;}
._40{width:59.532480px;}
._41{width:62.058720px;}
._37{width:134.354880px;}
._42{width:136.778880px;}
._6{width:160.274880px;}
._19{width:287.983680px;}
._1f{width:720.844800px;}
._2b{width:847.884480px;}
._16{width:959.176320px;}
._17{width:1039.937280px;}
._18{width:1103.210880px;}
._1c{width:1285.915200px;}
._12{width:1312.408320px;}
._1b{width:1411.005120px;}
._1d{width:1425.324480px;}
._1e{width:1462.580160px;}
._20{width:1642.398720px;}
._11{width:1692.024000px;}
._15{width:1715.634240px;}
._e{width:1833.455040px;}
._d{width:1863.366720px;}
._5{width:1882.206240px;}
._1a{width:1912.678080px;}
._b{width:2091.232320px;}
._f{width:2103.308160px;}
._c{width:2132.897280px;}
._21{width:2180.647680px;}
._10{width:2199.140160px;}
._13{width:2247.599040px;}
.fc8{color:rgb(0,102,102);}
.fc7{color:transparent;}
.fc6{color:rgb(5,99,193);}
.fc3{color:rgb(255,192,0);}
.fc2{color:rgb(0,113,123);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(139,189,13);}
.fs5{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:43.200000px;}
.fs0{font-size:47.520000px;}
.fs1{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs8{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs7{font-size:83.520000px;}
.fs4{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y193{bottom:3.600000px;}
.y1ac{bottom:3.630000px;}
.y1c1{bottom:3.645000px;}
.y190{bottom:3.960000px;}
.y1f5{bottom:4.320000px;}
.y196{bottom:4.680000px;}
.y1f2{bottom:4.710000px;}
.y18d{bottom:5.040000px;}
.y32d{bottom:5.070000px;}
.y2cb{bottom:8.280000px;}
.y50{bottom:9.720000px;}
.y21{bottom:12.240000px;}
.y1d{bottom:13.320000px;}
.yf{bottom:13.680000px;}
.y18{bottom:13.716000px;}
.y2a{bottom:13.725000px;}
.y15{bottom:14.040000px;}
.yfc{bottom:14.070000px;}
.y99{bottom:14.400000px;}
.yf7{bottom:14.445000px;}
.y4d{bottom:14.790000px;}
.y1bf{bottom:15.480000px;}
.y1b0{bottom:15.840000px;}
.y1b{bottom:16.230000px;}
.y3c{bottom:16.920000px;}
.y42{bottom:17.280000px;}
.y56{bottom:17.640000px;}
.y54{bottom:17.670000px;}
.y5b{bottom:17.685000px;}
.y2c6{bottom:18.000000px;}
.y2c1{bottom:18.360000px;}
.y32b{bottom:18.390000px;}
.y1ef{bottom:19.800000px;}
.y21b{bottom:20.160000px;}
.y195{bottom:20.880000px;}
.y197{bottom:21.270000px;}
.ya{bottom:21.600000px;}
.y3b{bottom:23.040000px;}
.y41{bottom:23.400000px;}
.y18f{bottom:23.760000px;}
.y21c{bottom:23.805000px;}
.y2bd{bottom:24.120000px;}
.y334{bottom:24.480000px;}
.y338{bottom:24.483000px;}
.y1f{bottom:25.560000px;}
.y25{bottom:25.590000px;}
.y23{bottom:25.950000px;}
.y1af{bottom:27.720000px;}
.y2ca{bottom:28.080000px;}
.y2c3{bottom:28.440000px;}
.y52{bottom:30.600000px;}
.y59{bottom:31.320000px;}
.y4f{bottom:31.680000px;}
.y2c8{bottom:38.160000px;}
.y2c0{bottom:38.190000px;}
.y2c5{bottom:38.205000px;}
.y2c4{bottom:38.520000px;}
.y20{bottom:39.240000px;}
.y24{bottom:39.270000px;}
.y46{bottom:39.600000px;}
.y44{bottom:39.630000px;}
.y3{bottom:45.036000px;}
.y9{bottom:45.720000px;}
.y2cf{bottom:47.880000px;}
.y2c9{bottom:48.240000px;}
.y2cd{bottom:48.270000px;}
.y62{bottom:53.280000px;}
.y32f{bottom:54.360000px;}
.y30{bottom:60.516000px;}
.y2{bottom:63.036000px;}
.y8{bottom:69.840000px;}
.y61{bottom:75.270000px;}
.y7{bottom:93.600000px;}
.y60{bottom:97.230000px;}
.y19{bottom:98.316000px;}
.y153{bottom:108.756000px;}
.y1cc{bottom:109.836000px;}
.y16f{bottom:111.636000px;}
.y152{bottom:112.356000px;}
.yc4{bottom:112.716000px;}
.y85{bottom:113.076000px;}
.y2e6{bottom:113.796000px;}
.y127{bottom:115.596000px;}
.y101{bottom:116.676000px;}
.y223{bottom:117.396000px;}
.y17f{bottom:118.116000px;}
.y149{bottom:118.476000px;}
.y5f{bottom:118.830000px;}
.y33a{bottom:119.196000px;}
.y2b3{bottom:119.556000px;}
.y28f{bottom:120.996000px;}
.y295{bottom:121.356000px;}
.y2ab{bottom:124.236000px;}
.y151{bottom:124.956000px;}
.y117{bottom:126.396000px;}
.y266{bottom:126.756000px;}
.y1ea{bottom:127.116000px;}
.y6{bottom:127.830000px;}
.y17{bottom:128.196000px;}
.y1a6{bottom:133.632000px;}
.y1cb{bottom:133.992000px;}
.y16e{bottom:135.792000px;}
.y349{bottom:136.116000px;}
.y2d9{bottom:136.512000px;}
.y2bb{bottom:137.592000px;}
.y17e{bottom:138.672000px;}
.y84{bottom:139.392000px;}
.y5e{bottom:140.790000px;}
.y246{bottom:141.552000px;}
.ye4{bottom:142.272000px;}
.yc3{bottom:142.632000px;}
.y126{bottom:145.512000px;}
.y2e5{bottom:146.232000px;}
.y274{bottom:148.032000px;}
.y140{bottom:148.392000px;}
.y2b2{bottom:149.472000px;}
.y28e{bottom:150.915000px;}
.y1e9{bottom:151.275000px;}
.y294{bottom:151.635000px;}
.y5{bottom:151.950000px;}
.y100{bottom:152.355000px;}
.y2aa{bottom:154.155000px;}
.y116{bottom:156.315000px;}
.y265{bottom:156.675000px;}
.y13f{bottom:157.395000px;}
.y1ca{bottom:157.755000px;}
.y16{bottom:158.115000px;}
.y16d{bottom:159.555000px;}
.y222{bottom:160.635000px;}
.y339{bottom:163.155000px;}
.y2ed{bottom:163.515000px;}
.y202{bottom:164.955000px;}
.y245{bottom:165.315000px;}
.y2d8{bottom:166.395000px;}
.y2ba{bottom:167.475000px;}
.y25f{bottom:169.275000px;}
.y2e4{bottom:170.355000px;}
.yc2{bottom:172.515000px;}
.y1a5{bottom:172.875000px;}
.y1e8{bottom:175.035000px;}
.y125{bottom:175.395000px;}
.y273{bottom:177.915000px;}
.ye3{bottom:178.635000px;}
.y2b1{bottom:179.715000px;}
.y16c{bottom:180.075000px;}
.y28d{bottom:180.795000px;}
.y293{bottom:181.515000px;}
.y1c9{bottom:181.875000px;}
.y115{bottom:182.595000px;}
.y2a9{bottom:184.035000px;}
.y305{bottom:184.395000px;}
.yff{bottom:185.475000px;}
.y264{bottom:186.915000px;}
.y13e{bottom:187.275000px;}
.y14{bottom:187.995000px;}
.y201{bottom:189.075000px;}
.y244{bottom:189.435000px;}
.y2ec{bottom:189.795000px;}
.y83{bottom:190.155000px;}
.y2e3{bottom:194.115000px;}
.y2d7{bottom:196.275000px;}
.y2b9{bottom:197.355000px;}
.y1e7{bottom:199.155000px;}
.y25e{bottom:199.515000px;}
.yc1{bottom:202.395000px;}
.y221{bottom:204.555000px;}
.y124{bottom:205.275000px;}
.y1a4{bottom:205.635000px;}
.y1c8{bottom:205.995000px;}
.y272{bottom:207.795000px;}
.ye2{bottom:208.515000px;}
.y2b0{bottom:209.595000px;}
.y28c{bottom:210.675000px;}
.y292{bottom:211.395000px;}
.y4e{bottom:212.475000px;}
.y200{bottom:212.835000px;}
.y243{bottom:213.555000px;}
.y2a8{bottom:213.915000px;}
.y304{bottom:214.275000px;}
.yfe{bottom:215.715000px;}
.y263{bottom:216.795000px;}
.y13d{bottom:217.155000px;}
.y13{bottom:218.235000px;}
.y1e6{bottom:223.275000px;}
.y337{bottom:225.435000px;}
.y2d6{bottom:226.155000px;}
.y220{bottom:226.515000px;}
.y2b8{bottom:227.595000px;}
.y1a3{bottom:229.395000px;}
.y1c7{bottom:229.755000px;}
.yc0{bottom:232.275000px;}
.y2eb{bottom:234.075000px;}
.y123{bottom:235.155000px;}
.y1ff{bottom:236.955000px;}
.y242{bottom:237.315000px;}
.y271{bottom:237.675000px;}
.ye1{bottom:238.395000px;}
.y2af{bottom:239.475000px;}
.y28b{bottom:240.555000px;}
.y82{bottom:241.275000px;}
.y2e2{bottom:242.355000px;}
.y2a7{bottom:243.795000px;}
.yfd{bottom:244.155000px;}
.y336{bottom:245.955000px;}
.y262{bottom:246.675000px;}
.y13c{bottom:247.035000px;}
.y12{bottom:248.115000px;}
.y21f{bottom:248.475000px;}
.y1a2{bottom:253.515000px;}
.y1c6{bottom:253.875000px;}
.y2d5{bottom:256.395000px;}
.y4c{bottom:257.115000px;}
.y2b7{bottom:257.475000px;}
.y25d{bottom:259.275000px;}
.yfb{bottom:259.995000px;}
.y1fe{bottom:261.075000px;}
.y241{bottom:261.435000px;}
.ybf{bottom:262.155000px;}
.y122{bottom:265.065000px;}
.y2e1{bottom:266.145000px;}
.y333{bottom:266.865000px;}
.y270{bottom:267.585000px;}
.ye0{bottom:268.305000px;}
.y2ae{bottom:269.385000px;}
.y21e{bottom:270.465000px;}
.y28a{bottom:270.825000px;}
.y1e5{bottom:271.185000px;}
.y81{bottom:272.625000px;}
.y2a6{bottom:273.705000px;}
.y303{bottom:274.425000px;}
.y261{bottom:276.585000px;}
.y13b{bottom:277.305000px;}
.y1a1{bottom:277.665000px;}
.y11{bottom:278.025000px;}
.y1fd{bottom:284.865000px;}
.y240{bottom:285.585000px;}
.y2d4{bottom:286.305000px;}
.y2b6{bottom:287.385000px;}
.y25c{bottom:289.185000px;}
.y2e0{bottom:290.265000px;}
.yfa{bottom:291.705000px;}
.ybe{bottom:292.065000px;}
.y21d{bottom:292.425000px;}
.y121{bottom:295.305000px;}
.y26f{bottom:297.825000px;}
.ydf{bottom:298.185000px;}
.y2ad{bottom:299.265000px;}
.y289{bottom:300.705000px;}
.y4b{bottom:301.065000px;}
.y1a0{bottom:301.425000px;}
.y1c5{bottom:301.785000px;}
.y80{bottom:304.305000px;}
.y22d{bottom:305.385000px;}
.y260{bottom:306.465000px;}
.y13a{bottom:307.185000px;}
.y10{bottom:307.905000px;}
.y335{bottom:308.265000px;}
.y1fc{bottom:308.985000px;}
.y23f{bottom:309.345000px;}
.y2df{bottom:314.385000px;}
.y2d3{bottom:316.185000px;}
.y2b5{bottom:317.265000px;}
.y1e4{bottom:319.065000px;}
.ybd{bottom:321.945000px;}
.y148{bottom:322.305000px;}
.yf9{bottom:323.745000px;}
.y120{bottom:325.185000px;}
.y19f{bottom:325.545000px;}
.y1c4{bottom:325.905000px;}
.y26e{bottom:327.705000px;}
.yde{bottom:328.065000px;}
.y332{bottom:328.785000px;}
.y4a{bottom:329.865000px;}
.y288{bottom:330.585000px;}
.y2a4{bottom:330.945000px;}
.y1fb{bottom:333.105000px;}
.y23e{bottom:333.465000px;}
.y302{bottom:334.185000px;}
.y7f{bottom:335.625000px;}
.y139{bottom:337.065000px;}
.ye{bottom:337.785000px;}
.y2de{bottom:338.145000px;}
.ybc{bottom:341.745000px;}
.y1e3{bottom:343.185000px;}
.y2d2{bottom:346.065000px;}
.y1c3{bottom:347.145000px;}
.y25b{bottom:348.945000px;}
.y19e{bottom:349.665000px;}
.y147{bottom:352.185000px;}
.y11f{bottom:355.065000px;}
.yf8{bottom:355.425000px;}
.y1fa{bottom:356.865000px;}
.y23d{bottom:357.585000px;}
.ydd{bottom:357.945000px;}
.y287{bottom:360.465000px;}
.y2a3{bottom:361.185000px;}
.y2dd{bottom:362.265000px;}
.y6a{bottom:363.705000px;}
.y301{bottom:364.065000px;}
.y138{bottom:366.945000px;}
.y7e{bottom:367.305000px;}
.y2b{bottom:367.665000px;}
.y1c2{bottom:371.625000px;}
.y19d{bottom:373.425000px;}
.ybb{bottom:375.945000px;}
.y22c{bottom:376.305000px;}
.y21a{bottom:377.025000px;}
.y1f9{bottom:378.105000px;}
.y25a{bottom:378.825000px;}
.y23c{bottom:381.345000px;}
.y146{bottom:382.065000px;}
.y11e{bottom:384.945000px;}
.yf6{bottom:387.465000px;}
.ydc{bottom:388.185000px;}
.y2a5{bottom:389.265000px;}
.y286{bottom:390.345000px;}
.y1e2{bottom:391.065000px;}
.y300{bottom:393.945000px;}
.y69{bottom:394.305000px;}
.y1c0{bottom:396.465000px;}
.y137{bottom:396.825000px;}
.y19c{bottom:397.545000px;}
.y29{bottom:397.905000px;}
.y7d{bottom:398.670000px;}
.y1f8{bottom:400.110000px;}
.y2dc{bottom:401.910000px;}
.y2b4{bottom:403.350000px;}
.y23b{bottom:405.510000px;}
.yba{bottom:405.870000px;}
.y259{bottom:409.110000px;}
.y32e{bottom:409.830000px;}
.y145{bottom:411.990000px;}
.y11d{bottom:414.870000px;}
.y1e1{bottom:415.230000px;}
.y26d{bottom:417.390000px;}
.y219{bottom:417.750000px;}
.ydb{bottom:418.110000px;}
.yf5{bottom:419.190000px;}
.y48{bottom:420.270000px;}
.y2a2{bottom:420.990000px;}
.y1be{bottom:421.350000px;}
.y19b{bottom:421.710000px;}
.y1f7{bottom:422.070000px;}
.y2ff{bottom:423.870000px;}
.y22b{bottom:424.230000px;}
.y68{bottom:424.950000px;}
.y136{bottom:426.750000px;}
.y28{bottom:427.830000px;}
.y23a{bottom:429.630000px;}
.y7c{bottom:430.350000px;}
.y2d1{bottom:435.750000px;}
.yb9{bottom:436.110000px;}
.y47{bottom:436.470000px;}
.y258{bottom:438.990000px;}
.y1e0{bottom:439.350000px;}
.y2db{bottom:440.790000px;}
.y144{bottom:441.870000px;}
.y1f6{bottom:444.030000px;}
.y11c{bottom:444.750000px;}
.y19a{bottom:445.470000px;}
.y26c{bottom:447.270000px;}
.yda{bottom:447.990000px;}
.y22a{bottom:448.350000px;}
.y285{bottom:450.150000px;}
.y331{bottom:450.510000px;}
.y2a1{bottom:450.870000px;}
.yf4{bottom:451.230000px;}
.y239{bottom:453.390000px;}
.y2fe{bottom:453.750000px;}
.y67{bottom:455.550000px;}
.y135{bottom:456.630000px;}
.y27{bottom:457.710000px;}
.y218{bottom:458.430000px;}
.y7b{bottom:461.670000px;}
.y1df{bottom:463.110000px;}
.y45{bottom:463.830000px;}
.y2d0{bottom:465.630000px;}
.yb8{bottom:465.990000px;}
.y257{bottom:468.870000px;}
.y199{bottom:469.590000px;}
.y1bd{bottom:469.950000px;}
.y143{bottom:471.750000px;}
.y229{bottom:472.110000px;}
.y2da{bottom:473.550000px;}
.y11b{bottom:474.630000px;}
.y26b{bottom:477.150000px;}
.y238{bottom:477.510000px;}
.yd9{bottom:477.870000px;}
.y284{bottom:480.030000px;}
.y2a0{bottom:480.750000px;}
.y217{bottom:482.190000px;}
.yf3{bottom:482.910000px;}
.y2fd{bottom:483.990000px;}
.y66{bottom:486.150000px;}
.y134{bottom:486.510000px;}
.y1de{bottom:487.230000px;}
.y26{bottom:487.590000px;}
.y1f4{bottom:487.950000px;}
.y16b{bottom:490.470000px;}
.y330{bottom:491.190000px;}
.y7a{bottom:493.350000px;}
.y198{bottom:493.710000px;}
.yb7{bottom:495.870000px;}
.y228{bottom:496.230000px;}
.y256{bottom:498.750000px;}
.y142{bottom:501.630000px;}
.y17d{bottom:503.790000px;}
.y11a{bottom:504.870000px;}
.y26a{bottom:507.030000px;}
.yd8{bottom:507.750000px;}
.y1f3{bottom:509.910000px;}
.y283{bottom:510.270000px;}
.y29f{bottom:510.630000px;}
.y1dd{bottom:511.350000px;}
.y1bc{bottom:513.510000px;}
.y2fc{bottom:513.870000px;}
.y16a{bottom:514.590000px;}
.yf2{bottom:514.950000px;}
.y216{bottom:515.310000px;}
.y65{bottom:516.390000px;}
.y133{bottom:516.750000px;}
.y22{bottom:517.470000px;}
.y43{bottom:518.550000px;}
.y114{bottom:518.910000px;}
.y227{bottom:520.350000px;}
.y79{bottom:524.670000px;}
.y237{bottom:525.390000px;}
.yb6{bottom:525.750000px;}
.y150{bottom:527.550000px;}
.y31b{bottom:527.910000px;}
.y255{bottom:528.630000px;}
.y141{bottom:531.870000px;}
.y119{bottom:534.780000px;}
.y1dc{bottom:535.140000px;}
.y17c{bottom:536.580000px;}
.y194{bottom:536.940000px;}
.y269{bottom:537.300000px;}
.yd7{bottom:537.660000px;}
.y169{bottom:538.380000px;}
.y215{bottom:539.460000px;}
.y282{bottom:540.180000px;}
.y29e{bottom:540.540000px;}
.y2fb{bottom:543.780000px;}
.y226{bottom:544.140000px;}
.y1bb{bottom:546.300000px;}
.y132{bottom:546.660000px;}
.y64{bottom:547.020000px;}
.y2ea{bottom:547.380000px;}
.y14f{bottom:547.740000px;}
.y236{bottom:549.540000px;}
.y2ce{bottom:552.420000px;}
.y1f1{bottom:553.860000px;}
.y31a{bottom:554.220000px;}
.y32c{bottom:555.300000px;}
.yb5{bottom:555.660000px;}
.y78{bottom:556.380000px;}
.y254{bottom:558.540000px;}
.y192{bottom:558.900000px;}
.y17b{bottom:560.700000px;}
.y113{bottom:561.780000px;}
.y168{bottom:562.500000px;}
.y214{bottom:563.220000px;}
.y159{bottom:564.660000px;}
.y118{bottom:567.180000px;}
.yd6{bottom:567.540000px;}
.y225{bottom:568.260000px;}
.y1db{bottom:569.340000px;}
.y281{bottom:570.060000px;}
.y1ba{bottom:570.420000px;}
.y1e{bottom:571.500000px;}
.y40{bottom:573.300000px;}
.y235{bottom:573.660000px;}
.y1f0{bottom:575.820000px;}
.y63{bottom:577.620000px;}
.y319{bottom:578.340000px;}
.yf1{bottom:578.700000px;}
.y131{bottom:579.060000px;}
.y17a{bottom:584.820000px;}
.yb4{bottom:585.540000px;}
.y2e9{bottom:586.260000px;}
.y167{bottom:586.620000px;}
.y213{bottom:587.340000px;}
.y77{bottom:587.700000px;}
.y253{bottom:588.420000px;}
.y112{bottom:591.660000px;}
.y224{bottom:592.380000px;}
.y158{bottom:594.540000px;}
.y268{bottom:597.060000px;}
.yd5{bottom:597.420000px;}
.y1ee{bottom:598.140000px;}
.y191{bottom:599.220000px;}
.y280{bottom:599.940000px;}
.y29d{bottom:600.660000px;}
.y98{bottom:601.380000px;}
.y328{bottom:601.740000px;}
.y2fa{bottom:603.540000px;}
.y14e{bottom:607.500000px;}
.y5d{bottom:608.220000px;}
.y179{bottom:608.580000px;}
.y166{bottom:610.380000px;}
.y212{bottom:611.460000px;}
.yb3{bottom:615.420000px;}
.y1da{bottom:616.140000px;}
.y1b9{bottom:618.300000px;}
.y76{bottom:619.380000px;}
.y111{bottom:621.540000px;}
.y2cc{bottom:622.260000px;}
.y157{bottom:624.420000px;}
.y32a{bottom:624.780000px;}
.y2e8{bottom:625.140000px;}
.y1c{bottom:625.500000px;}
.y267{bottom:626.940000px;}
.yd4{bottom:627.660000px;}
.yf0{bottom:629.460000px;}
.y27f{bottom:629.820000px;}
.y29c{bottom:630.540000px;}
.y97{bottom:631.620000px;}
.y178{bottom:632.700000px;}
.y2f9{bottom:633.420000px;}
.y165{bottom:634.500000px;}
.y211{bottom:635.220000px;}
.y318{bottom:638.100000px;}
.y1ed{bottom:638.460000px;}
.y130{bottom:639.540000px;}
.y18e{bottom:639.900000px;}
.y1d9{bottom:640.260000px;}
.y3f{bottom:641.700000px;}
.y1b8{bottom:642.420000px;}
.yb2{bottom:645.300000px;}
.y234{bottom:645.660000px;}
.y14d{bottom:647.460000px;}
.y329{bottom:648.180000px;}
.ya4{bottom:648.540000px;}
.y110{bottom:651.420000px;}
.y156{bottom:654.300000px;}
.y1a{bottom:655.380000px;}
.y348{bottom:656.175000px;}
.y177{bottom:656.820000px;}
.yd3{bottom:657.540000px;}
.y2e7{bottom:657.900000px;}
.y317{bottom:658.260000px;}
.y164{bottom:658.620000px;}
.y210{bottom:659.340000px;}
.y27e{bottom:659.700000px;}
.y29b{bottom:660.420000px;}
.y2f8{bottom:663.300000px;}
.y1d8{bottom:664.380000px;}
.y1b7{bottom:666.570000px;}
.y14c{bottom:667.290000px;}
.y3e{bottom:669.090000px;}
.y12f{bottom:669.450000px;}
.y75{bottom:670.170000px;}
.y326{bottom:671.610000px;}
.yef{bottom:672.330000px;}
.yb1{bottom:675.570000px;}
.y316{bottom:678.090000px;}
.y252{bottom:678.450000px;}
.y1ec{bottom:679.530000px;}
.y176{bottom:680.610000px;}
.ya3{bottom:680.970000px;}
.y10f{bottom:681.330000px;}
.y163{bottom:682.410000px;}
.y20f{bottom:683.490000px;}
.y155{bottom:684.210000px;}
.y291{bottom:686.730000px;}
.yd2{bottom:687.450000px;}
.y1d7{bottom:688.170000px;}
.y27d{bottom:689.610000px;}
.y1b6{bottom:690.330000px;}
.y2c7{bottom:692.130000px;}
.y2f7{bottom:693.210000px;}
.y233{bottom:693.570000px;}
.y327{bottom:694.650000px;}
.y3d{bottom:696.450000px;}
.y315{bottom:697.890000px;}
.y347{bottom:697.965000px;}
.y12e{bottom:699.330000px;}
.y175{bottom:701.130000px;}
.y74{bottom:701.850000px;}
.yee{bottom:702.210000px;}
.y1eb{bottom:703.290000px;}
.y96{bottom:704.370000px;}
.yb0{bottom:705.450000px;}
.y162{bottom:706.530000px;}
.y14b{bottom:707.250000px;}
.y251{bottom:708.330000px;}
.y10e{bottom:711.210000px;}
.y1d6{bottom:712.290000px;}
.ya2{bottom:713.370000px;}
.y1b5{bottom:714.450000px;}
.y290{bottom:716.610000px;}
.y154{bottom:716.970000px;}
.yd1{bottom:717.330000px;}
.y232{bottom:717.690000px;}
.y314{bottom:718.050000px;}
.y27c{bottom:719.490000px;}
.y29a{bottom:720.210000px;}
.y18c{bottom:721.650000px;}
.y91{bottom:722.370000px;}
.yd{bottom:722.730000px;}
.y2f6{bottom:723.450000px;}
.y3a{bottom:723.810000px;}
.y14a{bottom:727.410000px;}
.y20e{bottom:728.490000px;}
.y12d{bottom:729.210000px;}
.yed{bottom:732.090000px;}
.y73{bottom:733.170000px;}
.yc{bottom:733.530000px;}
.yaf{bottom:735.330000px;}
.y1d5{bottom:736.410000px;}
.y313{bottom:737.850000px;}
.y250{bottom:738.210000px;}
.y1b4{bottom:738.570000px;}
.y346{bottom:739.725000px;}
.y95{bottom:740.730000px;}
.y10d{bottom:741.090000px;}
.y231{bottom:741.450000px;}
.ya1{bottom:745.770000px;}
.yd0{bottom:747.210000px;}
.y27b{bottom:749.730000px;}
.y299{bottom:750.090000px;}
.y20d{bottom:750.450000px;}
.y2f5{bottom:753.330000px;}
.y18b{bottom:754.410000px;}
.y312{bottom:758.010000px;}
.y90{bottom:758.730000px;}
.y12c{bottom:759.090000px;}
.y1d4{bottom:760.170000px;}
.y5c{bottom:761.970000px;}
.y1b3{bottom:762.330000px;}
.y325{bottom:764.490000px;}
.y72{bottom:764.850000px;}
.yae{bottom:765.210000px;}
.y230{bottom:765.570000px;}
.y345{bottom:765.690000px;}
.yb{bottom:767.370000px;}
.y24f{bottom:768.090000px;}
.y94{bottom:770.610000px;}
.y10c{bottom:771.330000px;}
.y20c{bottom:772.410000px;}
.y39{bottom:775.650000px;}
.ycf{bottom:777.090000px;}
.y311{bottom:777.810000px;}
.ya0{bottom:778.170000px;}
.y27a{bottom:779.610000px;}
.y298{bottom:779.970000px;}
.y2f4{bottom:783.210000px;}
.y1d3{bottom:784.290000px;}
.y22f{bottom:786.090000px;}
.y1b2{bottom:786.450000px;}
.y161{bottom:787.530000px;}
.y324{bottom:787.890000px;}
.y8f{bottom:788.610000px;}
.y12b{bottom:788.970000px;}
.y344{bottom:789.450000px;}
.y93{bottom:790.410000px;}
.yec{bottom:792.210000px;}
.y5a{bottom:792.570000px;}
.y20b{bottom:794.370000px;}
.yad{bottom:795.090000px;}
.y24e{bottom:797.970000px;}
.y10b{bottom:801.255000px;}
.y18a{bottom:802.335000px;}
.y38{bottom:805.575000px;}
.yce{bottom:807.015000px;}
.y1d2{bottom:808.455000px;}
.y279{bottom:809.535000px;}
.y297{bottom:809.895000px;}
.y9f{bottom:810.615000px;}
.y321{bottom:810.975000px;}
.y160{bottom:811.695000px;}
.y2f3{bottom:813.135000px;}
.y343{bottom:813.570000px;}
.y92{bottom:814.215000px;}
.y71{bottom:816.015000px;}
.y20a{bottom:816.375000px;}
.y4{bottom:816.735000px;}
.y310{bottom:817.815000px;}
.y8e{bottom:818.535000px;}
.y12a{bottom:818.895000px;}
.yeb{bottom:822.135000px;}
.y58{bottom:823.215000px;}
.y2ac{bottom:823.935000px;}
.yac{bottom:825.015000px;}
.y189{bottom:826.455000px;}
.y24d{bottom:827.895000px;}
.y342{bottom:830.415000px;}
.y10a{bottom:831.135000px;}
.y2c2{bottom:831.495000px;}
.y1b1{bottom:831.855000px;}
.y1d1{bottom:832.215000px;}
.y323{bottom:834.375000px;}
.y37{bottom:835.455000px;}
.ycd{bottom:836.895000px;}
.y30f{bottom:837.615000px;}
.y8d{bottom:838.335000px;}
.y278{bottom:839.415000px;}
.y296{bottom:840.135000px;}
.y9e{bottom:843.015000px;}
.y70{bottom:847.335000px;}
.y129{bottom:848.775000px;}
.y188{bottom:850.215000px;}
.yea{bottom:852.015000px;}
.yab{bottom:854.895000px;}
.y1ae{bottom:856.335000px;}
.y322{bottom:857.415000px;}
.y24c{bottom:857.775000px;}
.y15f{bottom:859.575000px;}
.y209{bottom:860.295000px;}
.y109{bottom:861.015000px;}
.y8c{bottom:862.455000px;}
.y36{bottom:865.335000px;}
.ycc{bottom:867.135000px;}
.y57{bottom:867.495000px;}
.y277{bottom:869.295000px;}
.y2f2{bottom:872.895000px;}
.y187{bottom:874.335000px;}
.y9d{bottom:875.415000px;}
.y30e{bottom:877.575000px;}
.y6f{bottom:879.015000px;}
.y1d0{bottom:880.455000px;}
.y31e{bottom:880.815000px;}
.ye9{bottom:881.895000px;}
.y208{bottom:882.615000px;}
.y15e{bottom:883.695000px;}
.y128{bottom:884.415000px;}
.yaa{bottom:884.775000px;}
.y8b{bottom:886.215000px;}
.y24b{bottom:888.015000px;}
.y108{bottom:890.895000px;}
.y35{bottom:895.575000px;}
.ycb{bottom:897.015000px;}
.y30d{bottom:897.735000px;}
.y55{bottom:898.095000px;}
.y186{bottom:898.455000px;}
.y341{bottom:899.175000px;}
.y276{bottom:899.895000px;}
.y2bf{bottom:901.335000px;}
.y2f1{bottom:902.775000px;}
.y320{bottom:903.855000px;}
.y1cf{bottom:904.215000px;}
.y207{bottom:904.575000px;}
.y1ad{bottom:905.295000px;}
.y15d{bottom:907.455000px;}
.y9c{bottom:907.815000px;}
.y6e{bottom:910.335000px;}
.ye8{bottom:911.775000px;}
.ya9{bottom:915.015000px;}
.y30c{bottom:917.535000px;}
.y24a{bottom:917.895000px;}
.y107{bottom:920.775000px;}
.y340{bottom:921.855000px;}
.y185{bottom:922.215000px;}
.y34{bottom:923.655000px;}
.y206{bottom:926.535000px;}
.yca{bottom:926.895000px;}
.y31f{bottom:927.255000px;}
.y1ce{bottom:928.335000px;}
.y53{bottom:928.695000px;}
.y1ab{bottom:929.775000px;}
.y15c{bottom:931.575000px;}
.y2f0{bottom:932.655000px;}
.y8a{bottom:934.485000px;}
.y30b{bottom:937.725000px;}
.y9b{bottom:940.245000px;}
.ye7{bottom:941.685000px;}
.y33f{bottom:943.845000px;}
.ya8{bottom:944.925000px;}
.y184{bottom:946.365000px;}
.y249{bottom:947.805000px;}
.y205{bottom:948.525000px;}
.y106{bottom:950.685000px;}
.y33{bottom:952.485000px;}
.y1aa{bottom:954.645000px;}
.yc9{bottom:956.805000px;}
.y30a{bottom:957.525000px;}
.y89{bottom:958.245000px;}
.y51{bottom:959.325000px;}
.y275{bottom:959.685000px;}
.y6d{bottom:961.485000px;}
.y2ef{bottom:962.925000px;}
.y33e{bottom:965.085000px;}
.y174{bottom:967.605000px;}
.y15b{bottom:968.325000px;}
.y183{bottom:970.485000px;}
.y2be{bottom:971.205000px;}
.ye6{bottom:971.565000px;}
.y9a{bottom:972.645000px;}
.ya7{bottom:974.805000px;}
.y1cd{bottom:976.245000px;}
.y309{bottom:977.325000px;}
.y248{bottom:977.685000px;}
.y1a9{bottom:979.485000px;}
.y105{bottom:980.565000px;}
.y88{bottom:982.365000px;}
.y33d{bottom:986.325000px;}
.yc8{bottom:986.685000px;}
.y31d{bottom:988.485000px;}
.y204{bottom:989.205000px;}
.y2ee{bottom:992.805000px;}
.y182{bottom:994.245000px;}
.y308{bottom:997.485000px;}
.y173{bottom:1000.365000px;}
.ye5{bottom:1004.325000px;}
.ya6{bottom:1004.685000px;}
.y32{bottom:1005.045000px;}
.y87{bottom:1006.485000px;}
.y33c{bottom:1007.565000px;}
.y104{bottom:1010.805000px;}
.y2bc{bottom:1011.885000px;}
.y22e{bottom:1015.485000px;}
.yc7{bottom:1016.565000px;}
.y307{bottom:1017.285000px;}
.y181{bottom:1018.365000px;}
.y172{bottom:1024.485000px;}
.y6c{bottom:1028.085000px;}
.y1a8{bottom:1028.805000px;}
.y33b{bottom:1029.525000px;}
.y31c{bottom:1029.885000px;}
.y86{bottom:1030.245000px;}
.y49{bottom:1033.485000px;}
.y31{bottom:1033.845000px;}
.ya5{bottom:1034.565000px;}
.y306{bottom:1036.725000px;}
.y247{bottom:1037.445000px;}
.y103{bottom:1040.685000px;}
.y180{bottom:1042.485000px;}
.yc6{bottom:1046.445000px;}
.y171{bottom:1048.245000px;}
.y203{bottom:1048.605000px;}
.y6b{bottom:1070.250000px;}
.y170{bottom:1072.410000px;}
.y1a7{bottom:1072.770000px;}
.y102{bottom:1073.490000px;}
.yc5{bottom:1076.730000px;}
.y15a{bottom:1082.850000px;}
.y2f{bottom:1136.130000px;}
.y2e{bottom:1159.890000px;}
.y1{bottom:1173.570000px;}
.y2d{bottom:1184.010000px;}
.y2c{bottom:1200.299100px;}
.h9{height:5.265000px;}
.h4a{height:19.800000px;}
.h4b{height:20.160000px;}
.h4e{height:20.196000px;}
.h35{height:20.880000px;}
.h31{height:21.240000px;}
.h36{height:21.276000px;}
.h47{height:22.320000px;}
.h48{height:22.356000px;}
.h44{height:22.680000px;}
.h46{height:22.716000px;}
.h38{height:23.760000px;}
.h37{height:24.120000px;}
.h39{height:24.156000px;}
.h2f{height:26.149922px;}
.h18{height:27.360000px;}
.h19{height:27.396000px;}
.h23{height:29.520000px;}
.h12{height:29.871000px;}
.ha{height:29.880000px;}
.hc{height:29.916000px;}
.hd{height:30.240000px;}
.h2b{height:30.960000px;}
.h2c{height:30.996000px;}
.h2a{height:31.320000px;}
.h26{height:31.680000px;}
.h27{height:31.716000px;}
.he{height:32.436000px;}
.h2e{height:33.621328px;}
.h1f{height:36.336094px;}
.h45{height:37.080000px;}
.h15{height:38.160000px;}
.h1a{height:38.520000px;}
.h34{height:39.600000px;}
.h33{height:39.960000px;}
.h32{height:39.996000px;}
.h3d{height:41.040000px;}
.h3{height:41.092734px;}
.h2{height:41.115937px;}
.h13{height:42.335156px;}
.h20{height:43.436250px;}
.h21{height:43.560000px;}
.h1e{height:43.920000px;}
.h16{height:46.245938px;}
.hf{height:47.318906px;}
.h3b{height:47.880000px;}
.h3a{height:48.240000px;}
.h1d{height:50.650312px;}
.hb{height:52.299844px;}
.h7{height:52.329375px;}
.h10{height:54.000000px;}
.h11{height:54.036000px;}
.h1c{height:54.720000px;}
.h1b{height:54.756000px;}
.h14{height:55.282500px;}
.h4{height:57.071250px;}
.h43{height:60.480000px;}
.h4c{height:61.200000px;}
.h4d{height:61.596000px;}
.h2d{height:62.163910px;}
.h6{height:62.296875px;}
.h30{height:62.960625px;}
.h17{height:63.863437px;}
.h25{height:65.884219px;}
.h42{height:67.280625px;}
.h41{height:68.760000px;}
.h40{height:68.796000px;}
.h3f{height:69.120000px;}
.h3e{height:69.156000px;}
.h24{height:72.264375px;}
.h3c{height:74.004654px;}
.h29{height:74.953125px;}
.h28{height:86.945625px;}
.h8{height:88.461562px;}
.h49{height:121.320000px;}
.h22{height:153.030000px;}
.h5{height:180.030000px;}
.h4f{height:892.440000px;}
.h50{height:892.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:35.640000px;}
.w30{width:38.520000px;}
.w8{width:38.556000px;}
.w2f{width:38.880000px;}
.w32{width:39.240000px;}
.w31{width:39.996000px;}
.w2e{width:42.480000px;}
.w2d{width:42.516000px;}
.w2c{width:43.920000px;}
.w3e{width:46.440000px;}
.w25{width:46.836000px;}
.w2b{width:51.156000px;}
.w1b{width:52.596000px;}
.w37{width:52.920000px;}
.w3b{width:53.280000px;}
.w34{width:53.316000px;}
.wc{width:59.076000px;}
.w38{width:63.756000px;}
.w9{width:66.960000px;}
.w33{width:71.676000px;}
.w14{width:82.116000px;}
.w39{width:84.636000px;}
.w22{width:102.996000px;}
.w23{width:104.436000px;}
.w16{width:105.156000px;}
.w24{width:106.596000px;}
.w3a{width:114.192000px;}
.w26{width:121.752000px;}
.w29{width:124.992000px;}
.w3f{width:128.952000px;}
.w19{width:137.592000px;}
.w5{width:138.312000px;}
.w3d{width:155.955000px;}
.w3c{width:157.755000px;}
.w36{width:167.475000px;}
.w28{width:182.235000px;}
.w27{width:182.595000px;}
.w11{width:191.235000px;}
.w12{width:212.865000px;}
.wa{width:224.385000px;}
.w17{width:233.385000px;}
.w4{width:255.345000px;}
.wd{width:256.065000px;}
.w10{width:274.425000px;}
.w6{width:275.145000px;}
.w13{width:275.865000px;}
.we{width:291.345000px;}
.w21{width:310.830000px;}
.w1f{width:339.630000px;}
.w1e{width:347.910000px;}
.wf{width:404.460000px;}
.w2a{width:405.510000px;}
.w18{width:445.500000px;}
.w35{width:475.770000px;}
.w15{width:491.610000px;}
.w1c{width:531.570000px;}
.w1a{width:541.290000px;}
.w20{width:672.045000px;}
.w3{width:679.245000px;}
.w7{width:680.685000px;}
.w1d{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w42{width:1262.879981px;}
.w40{width:1262.880000px;}
.w41{width:1263.000000px;}
.x0{left:0.000000px;}
.x4b{left:5.400000px;}
.x16{left:7.920000px;}
.x3c{left:9.000000px;}
.x10{left:15.840000px;}
.xc{left:19.800000px;}
.x38{left:21.960000px;}
.x3{left:59.079000px;}
.x2{left:106.235987px;}
.x23{left:110.195987px;}
.x1f{left:133.271987px;}
.x1a{left:142.271987px;}
.xd{left:144.792000px;}
.x26{left:148.751987px;}
.x1{left:158.474987px;}
.x1d{left:159.555000px;}
.x7{left:160.989000px;}
.x6{left:164.589000px;}
.x4f{left:169.949981px;}
.x3a{left:176.115000px;}
.x44{left:178.635000px;}
.x1b{left:182.954987px;}
.x21{left:187.634987px;}
.x17{left:189.075000px;}
.x30{left:191.234987px;}
.x9{left:210.674987px;}
.xe{left:211.755000px;}
.x2f{left:214.274987px;}
.x4a{left:221.145000px;}
.x33{left:228.705000px;}
.x39{left:231.945000px;}
.x5{left:240.234000px;}
.x1c{left:244.545000px;}
.x20{left:249.584987px;}
.x4c{left:263.985000px;}
.x8{left:268.674000px;}
.x45{left:274.425000px;}
.x3d{left:275.865000px;}
.x4{left:277.674000px;}
.x15{left:297.465000px;}
.x29{left:315.509987px;}
.x3e{left:318.390000px;}
.x22{left:322.349987px;}
.x46{left:327.750000px;}
.x19{left:340.350000px;}
.x28{left:346.829987px;}
.xa{left:361.590000px;}
.x27{left:371.669987px;}
.x47{left:380.670000px;}
.x3f{left:403.380000px;}
.x34{left:411.300000px;}
.x2b{left:417.780000px;}
.x4d{left:419.940000px;}
.x48{left:433.980000px;}
.xf{left:436.140000px;}
.x40{left:442.260000px;}
.x2a{left:455.580000px;}
.x4e{left:466.380000px;}
.x11{left:471.780000px;}
.x41{left:480.780000px;}
.x49{left:497.730000px;}
.xb{left:499.890000px;}
.x13{left:510.690000px;}
.x2c{left:520.770000px;}
.x12{left:530.850000px;}
.x42{left:559.650000px;}
.x24{left:569.009973px;}
.x25{left:574.454987px;}
.x35{left:593.895000px;}
.x43{left:598.215000px;}
.x2d{left:625.215000px;}
.x36{left:634.934987px;}
.x3b{left:637.455000px;}
.x37{left:644.294987px;}
.x14{left:674.838045px;}
.x18{left:680.685000px;}
.x31{left:729.644987px;}
.x2e{left:731.805000px;}
.x1e{left:752.369987px;}
.x32{left:786.209987px;}
.x50{left:1101.524981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4a{letter-spacing:-1.770667pt;}
.ls27{letter-spacing:-1.765333pt;}
.ls20{letter-spacing:-1.584000pt;}
.ls4d{letter-spacing:-1.466667pt;}
.ls28{letter-spacing:-1.424000pt;}
.ls1a{letter-spacing:-1.280000pt;}
.ls32{letter-spacing:-1.237333pt;}
.ls3e{letter-spacing:-1.034667pt;}
.ls1d{letter-spacing:-0.986667pt;}
.lse{letter-spacing:-0.912000pt;}
.ls33{letter-spacing:-0.816000pt;}
.ls50{letter-spacing:-0.757333pt;}
.ls41{letter-spacing:-0.634667pt;}
.ls42{letter-spacing:-0.565333pt;}
.ls2{letter-spacing:-0.544000pt;}
.ls30{letter-spacing:-0.517333pt;}
.ls4{letter-spacing:-0.489067pt;}
.ls34{letter-spacing:-0.483733pt;}
.ls24{letter-spacing:-0.468267pt;}
.ls58{letter-spacing:-0.440533pt;}
.ls4c{letter-spacing:-0.402133pt;}
.ls35{letter-spacing:-0.386667pt;}
.ls53{letter-spacing:-0.322667pt;}
.ls51{letter-spacing:-0.320000pt;}
.ls3d{letter-spacing:-0.304533pt;}
.ls8{letter-spacing:-0.291733pt;}
.ls21{letter-spacing:-0.268800pt;}
.ls49{letter-spacing:-0.266133pt;}
.ls5b{letter-spacing:-0.261333pt;}
.ls2e{letter-spacing:-0.256000pt;}
.ls5a{letter-spacing:-0.230400pt;}
.ls25{letter-spacing:-0.210133pt;}
.ls14{letter-spacing:-0.199467pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.163733pt;}
.lsc{letter-spacing:-0.146133pt;}
.ls54{letter-spacing:-0.115200pt;}
.ls3f{letter-spacing:-0.084267pt;}
.ls13{letter-spacing:-0.015360pt;}
.ls2f{letter-spacing:-0.010240pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.002560pt;}
.ls10{letter-spacing:0.015360pt;}
.ls12{letter-spacing:0.030720pt;}
.lsf{letter-spacing:0.032000pt;}
.ls57{letter-spacing:0.058667pt;}
.ls1e{letter-spacing:0.099733pt;}
.ls4b{letter-spacing:0.106667pt;}
.ls3c{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.166400pt;}
.ls2d{letter-spacing:0.174080pt;}
.ls5{letter-spacing:0.186667pt;}
.ls1f{letter-spacing:0.204800pt;}
.ls11{letter-spacing:0.231680pt;}
.ls45{letter-spacing:0.245867pt;}
.ls39{letter-spacing:0.256000pt;}
.ls59{letter-spacing:0.271467pt;}
.lsb{letter-spacing:0.272533pt;}
.ls38{letter-spacing:0.276480pt;}
.ls55{letter-spacing:0.278933pt;}
.ls40{letter-spacing:0.291733pt;}
.ls56{letter-spacing:0.361067pt;}
.lsd{letter-spacing:0.368533pt;}
.lsa{letter-spacing:0.368640pt;}
.ls4e{letter-spacing:0.376320pt;}
.ls26{letter-spacing:0.389333pt;}
.ls22{letter-spacing:0.404267pt;}
.ls31{letter-spacing:0.404480pt;}
.ls44{letter-spacing:0.432533pt;}
.ls1b{letter-spacing:0.463467pt;}
.ls23{letter-spacing:0.496533pt;}
.ls46{letter-spacing:0.517333pt;}
.ls0{letter-spacing:0.522240pt;}
.ls6{letter-spacing:0.613333pt;}
.ls52{letter-spacing:0.622080pt;}
.ls9{letter-spacing:0.629760pt;}
.ls43{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.832000pt;}
.ls48{letter-spacing:1.386667pt;}
.ls4f{letter-spacing:36.254720pt;}
.ls37{letter-spacing:41.385387pt;}
.ls2c{letter-spacing:44.928000pt;}
.ls16{letter-spacing:45.573120pt;}
.ls3b{letter-spacing:47.774720pt;}
.ls2b{letter-spacing:51.169280pt;}
.ls3a{letter-spacing:55.465387pt;}
.ls47{letter-spacing:56.734720pt;}
.ls36{letter-spacing:56.745387pt;}
.ls15{letter-spacing:84.101120pt;}
.ls18{letter-spacing:101.893120pt;}
.ls1c{letter-spacing:753.460053pt;}
.ls17{letter-spacing:1642.389760pt;}
.ws2c{word-spacing:-53.760000pt;}
.wsf{word-spacing:-20.136960pt;}
.wse{word-spacing:-19.292160pt;}
.wsb{word-spacing:-19.292053pt;}
.wsc{word-spacing:-18.923520pt;}
.ws10{word-spacing:-18.385920pt;}
.wsd{word-spacing:-18.011520pt;}
.ws25{word-spacing:-17.664000pt;}
.ws26{word-spacing:-17.408000pt;}
.ws37{word-spacing:-17.344000pt;}
.ws5{word-spacing:-15.343573pt;}
.ws33{word-spacing:-15.270293pt;}
.ws21{word-spacing:-15.226773pt;}
.ws19{word-spacing:-15.193707pt;}
.ws3b{word-spacing:-15.134507pt;}
.ws24{word-spacing:-15.119573pt;}
.ws40{word-spacing:-15.109227pt;}
.ws1e{word-spacing:-15.042560pt;}
.ws30{word-spacing:-15.021973pt;}
.ws3a{word-spacing:-15.009173pt;}
.ws34{word-spacing:-14.976107pt;}
.ws1d{word-spacing:-14.937493pt;}
.ws3{word-spacing:-14.916907pt;}
.ws11{word-spacing:-14.899200pt;}
.ws3c{word-spacing:-14.896427pt;}
.ws14{word-spacing:-14.883840pt;}
.ws15{word-spacing:-14.868480pt;}
.ws12{word-spacing:-14.853120pt;}
.wsa{word-spacing:-14.837760pt;}
.ws20{word-spacing:-14.784000pt;}
.ws6{word-spacing:-14.732800pt;}
.ws4{word-spacing:-14.730240pt;}
.ws27{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.669013pt;}
.ws2f{word-spacing:-14.645973pt;}
.ws17{word-spacing:-14.645760pt;}
.ws39{word-spacing:-14.615040pt;}
.ws41{word-spacing:-14.607360pt;}
.ws1a{word-spacing:-14.584107pt;}
.ws35{word-spacing:-14.571627pt;}
.ws1f{word-spacing:-14.568960pt;}
.ws23{word-spacing:-14.520107pt;}
.ws13{word-spacing:-14.446080pt;}
.ws7{word-spacing:-14.438507pt;}
.ws3d{word-spacing:-14.435627pt;}
.ws2d{word-spacing:-14.425707pt;}
.ws38{word-spacing:-14.407573pt;}
.ws3e{word-spacing:-14.397227pt;}
.ws3f{word-spacing:-14.369493pt;}
.ws2b{word-spacing:-14.343573pt;}
.ws22{word-spacing:-14.261973pt;}
.ws28{word-spacing:-14.212907pt;}
.ws32{word-spacing:-14.164907pt;}
.ws31{word-spacing:-14.095573pt;}
.ws2a{word-spacing:-13.914240pt;}
.ws1b{word-spacing:-13.743573pt;}
.ws29{word-spacing:-13.492907pt;}
.ws18{word-spacing:-13.450240pt;}
.ws36{word-spacing:-13.263573pt;}
.ws1c{word-spacing:-13.146240pt;}
.ws9{word-spacing:-11.846293pt;}
.ws0{word-spacing:-11.029760pt;}
.ws2e{word-spacing:-0.053760pt;}
.ws2{word-spacing:-0.048640pt;}
.ws8{word-spacing:0.000000pt;}
.ws1{word-spacing:0.115093pt;}
._26{margin-left:-12.810240pt;}
._23{margin-left:-10.988800pt;}
._25{margin-left:-10.025387pt;}
._2a{margin-left:-8.986027pt;}
._22{margin-left:-8.037973pt;}
._27{margin-left:-6.705920pt;}
._24{margin-left:-5.266347pt;}
._29{margin-left:-4.171093pt;}
._30{margin-left:-3.161600pt;}
._3{margin-left:-2.150400pt;}
._2{margin-left:-1.088000pt;}
._0{width:1.077760pt;}
._1{width:2.098347pt;}
._4{width:3.375787pt;}
._7{width:5.138773pt;}
._9{width:6.261760pt;}
._8{width:7.162880pt;}
._2f{width:8.130560pt;}
._28{width:9.192960pt;}
._2c{width:10.872320pt;}
._2d{width:12.122027pt;}
._2e{width:13.614080pt;}
._33{width:16.248320pt;}
._36{width:17.579520pt;}
._31{width:18.506240pt;}
._32{width:19.916800pt;}
._14{width:20.950187pt;}
._38{width:21.893120pt;}
._39{width:23.088640pt;}
._35{width:24.081920pt;}
._34{width:25.226240pt;}
._3e{width:26.263040pt;}
._3d{width:27.310080pt;}
._3f{width:29.126827pt;}
._a{width:36.139520pt;}
._3c{width:37.856000pt;}
._3b{width:41.444267pt;}
._3a{width:43.202560pt;}
._40{width:52.917760pt;}
._41{width:55.163307pt;}
._37{width:119.426560pt;}
._42{width:121.581227pt;}
._6{width:142.466560pt;}
._19{width:255.985493pt;}
._1f{width:640.750933pt;}
._2b{width:753.675093pt;}
._16{width:852.601173pt;}
._17{width:924.388693pt;}
._18{width:980.631893pt;}
._1c{width:1143.035733pt;}
._12{width:1166.585173pt;}
._1b{width:1254.226773pt;}
._1d{width:1266.955093pt;}
._1e{width:1300.071253pt;}
._20{width:1459.909973pt;}
._11{width:1504.021333pt;}
._15{width:1525.008213pt;}
._e{width:1629.737813pt;}
._d{width:1656.325973pt;}
._5{width:1673.072213pt;}
._1a{width:1700.158293pt;}
._b{width:1858.873173pt;}
._f{width:1869.607253pt;}
._c{width:1895.908693pt;}
._21{width:1938.353493pt;}
._10{width:1954.791253pt;}
._13{width:1997.865813pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:38.400000pt;}
.fs0{font-size:42.240000pt;}
.fs1{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs8{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs7{font-size:74.240000pt;}
.fs4{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y193{bottom:3.200000pt;}
.y1ac{bottom:3.226667pt;}
.y1c1{bottom:3.240000pt;}
.y190{bottom:3.520000pt;}
.y1f5{bottom:3.840000pt;}
.y196{bottom:4.160000pt;}
.y1f2{bottom:4.186667pt;}
.y18d{bottom:4.480000pt;}
.y32d{bottom:4.506667pt;}
.y2cb{bottom:7.360000pt;}
.y50{bottom:8.640000pt;}
.y21{bottom:10.880000pt;}
.y1d{bottom:11.840000pt;}
.yf{bottom:12.160000pt;}
.y18{bottom:12.192000pt;}
.y2a{bottom:12.200000pt;}
.y15{bottom:12.480000pt;}
.yfc{bottom:12.506667pt;}
.y99{bottom:12.800000pt;}
.yf7{bottom:12.840000pt;}
.y4d{bottom:13.146667pt;}
.y1bf{bottom:13.760000pt;}
.y1b0{bottom:14.080000pt;}
.y1b{bottom:14.426667pt;}
.y3c{bottom:15.040000pt;}
.y42{bottom:15.360000pt;}
.y56{bottom:15.680000pt;}
.y54{bottom:15.706667pt;}
.y5b{bottom:15.720000pt;}
.y2c6{bottom:16.000000pt;}
.y2c1{bottom:16.320000pt;}
.y32b{bottom:16.346667pt;}
.y1ef{bottom:17.600000pt;}
.y21b{bottom:17.920000pt;}
.y195{bottom:18.560000pt;}
.y197{bottom:18.906667pt;}
.ya{bottom:19.200000pt;}
.y3b{bottom:20.480000pt;}
.y41{bottom:20.800000pt;}
.y18f{bottom:21.120000pt;}
.y21c{bottom:21.160000pt;}
.y2bd{bottom:21.440000pt;}
.y334{bottom:21.760000pt;}
.y338{bottom:21.762667pt;}
.y1f{bottom:22.720000pt;}
.y25{bottom:22.746667pt;}
.y23{bottom:23.066667pt;}
.y1af{bottom:24.640000pt;}
.y2ca{bottom:24.960000pt;}
.y2c3{bottom:25.280000pt;}
.y52{bottom:27.200000pt;}
.y59{bottom:27.840000pt;}
.y4f{bottom:28.160000pt;}
.y2c8{bottom:33.920000pt;}
.y2c0{bottom:33.946667pt;}
.y2c5{bottom:33.960000pt;}
.y2c4{bottom:34.240000pt;}
.y20{bottom:34.880000pt;}
.y24{bottom:34.906667pt;}
.y46{bottom:35.200000pt;}
.y44{bottom:35.226667pt;}
.y3{bottom:40.032000pt;}
.y9{bottom:40.640000pt;}
.y2cf{bottom:42.560000pt;}
.y2c9{bottom:42.880000pt;}
.y2cd{bottom:42.906667pt;}
.y62{bottom:47.360000pt;}
.y32f{bottom:48.320000pt;}
.y30{bottom:53.792000pt;}
.y2{bottom:56.032000pt;}
.y8{bottom:62.080000pt;}
.y61{bottom:66.906667pt;}
.y7{bottom:83.200000pt;}
.y60{bottom:86.426667pt;}
.y19{bottom:87.392000pt;}
.y153{bottom:96.672000pt;}
.y1cc{bottom:97.632000pt;}
.y16f{bottom:99.232000pt;}
.y152{bottom:99.872000pt;}
.yc4{bottom:100.192000pt;}
.y85{bottom:100.512000pt;}
.y2e6{bottom:101.152000pt;}
.y127{bottom:102.752000pt;}
.y101{bottom:103.712000pt;}
.y223{bottom:104.352000pt;}
.y17f{bottom:104.992000pt;}
.y149{bottom:105.312000pt;}
.y5f{bottom:105.626667pt;}
.y33a{bottom:105.952000pt;}
.y2b3{bottom:106.272000pt;}
.y28f{bottom:107.552000pt;}
.y295{bottom:107.872000pt;}
.y2ab{bottom:110.432000pt;}
.y151{bottom:111.072000pt;}
.y117{bottom:112.352000pt;}
.y266{bottom:112.672000pt;}
.y1ea{bottom:112.992000pt;}
.y6{bottom:113.626667pt;}
.y17{bottom:113.952000pt;}
.y1a6{bottom:118.784000pt;}
.y1cb{bottom:119.104000pt;}
.y16e{bottom:120.704000pt;}
.y349{bottom:120.992000pt;}
.y2d9{bottom:121.344000pt;}
.y2bb{bottom:122.304000pt;}
.y17e{bottom:123.264000pt;}
.y84{bottom:123.904000pt;}
.y5e{bottom:125.146667pt;}
.y246{bottom:125.824000pt;}
.ye4{bottom:126.464000pt;}
.yc3{bottom:126.784000pt;}
.y126{bottom:129.344000pt;}
.y2e5{bottom:129.984000pt;}
.y274{bottom:131.584000pt;}
.y140{bottom:131.904000pt;}
.y2b2{bottom:132.864000pt;}
.y28e{bottom:134.146667pt;}
.y1e9{bottom:134.466667pt;}
.y294{bottom:134.786667pt;}
.y5{bottom:135.066667pt;}
.y100{bottom:135.426667pt;}
.y2aa{bottom:137.026667pt;}
.y116{bottom:138.946667pt;}
.y265{bottom:139.266667pt;}
.y13f{bottom:139.906667pt;}
.y1ca{bottom:140.226667pt;}
.y16{bottom:140.546667pt;}
.y16d{bottom:141.826667pt;}
.y222{bottom:142.786667pt;}
.y339{bottom:145.026667pt;}
.y2ed{bottom:145.346667pt;}
.y202{bottom:146.626667pt;}
.y245{bottom:146.946667pt;}
.y2d8{bottom:147.906667pt;}
.y2ba{bottom:148.866667pt;}
.y25f{bottom:150.466667pt;}
.y2e4{bottom:151.426667pt;}
.yc2{bottom:153.346667pt;}
.y1a5{bottom:153.666667pt;}
.y1e8{bottom:155.586667pt;}
.y125{bottom:155.906667pt;}
.y273{bottom:158.146667pt;}
.ye3{bottom:158.786667pt;}
.y2b1{bottom:159.746667pt;}
.y16c{bottom:160.066667pt;}
.y28d{bottom:160.706667pt;}
.y293{bottom:161.346667pt;}
.y1c9{bottom:161.666667pt;}
.y115{bottom:162.306667pt;}
.y2a9{bottom:163.586667pt;}
.y305{bottom:163.906667pt;}
.yff{bottom:164.866667pt;}
.y264{bottom:166.146667pt;}
.y13e{bottom:166.466667pt;}
.y14{bottom:167.106667pt;}
.y201{bottom:168.066667pt;}
.y244{bottom:168.386667pt;}
.y2ec{bottom:168.706667pt;}
.y83{bottom:169.026667pt;}
.y2e3{bottom:172.546667pt;}
.y2d7{bottom:174.466667pt;}
.y2b9{bottom:175.426667pt;}
.y1e7{bottom:177.026667pt;}
.y25e{bottom:177.346667pt;}
.yc1{bottom:179.906667pt;}
.y221{bottom:181.826667pt;}
.y124{bottom:182.466667pt;}
.y1a4{bottom:182.786667pt;}
.y1c8{bottom:183.106667pt;}
.y272{bottom:184.706667pt;}
.ye2{bottom:185.346667pt;}
.y2b0{bottom:186.306667pt;}
.y28c{bottom:187.266667pt;}
.y292{bottom:187.906667pt;}
.y4e{bottom:188.866667pt;}
.y200{bottom:189.186667pt;}
.y243{bottom:189.826667pt;}
.y2a8{bottom:190.146667pt;}
.y304{bottom:190.466667pt;}
.yfe{bottom:191.746667pt;}
.y263{bottom:192.706667pt;}
.y13d{bottom:193.026667pt;}
.y13{bottom:193.986667pt;}
.y1e6{bottom:198.466667pt;}
.y337{bottom:200.386667pt;}
.y2d6{bottom:201.026667pt;}
.y220{bottom:201.346667pt;}
.y2b8{bottom:202.306667pt;}
.y1a3{bottom:203.906667pt;}
.y1c7{bottom:204.226667pt;}
.yc0{bottom:206.466667pt;}
.y2eb{bottom:208.066667pt;}
.y123{bottom:209.026667pt;}
.y1ff{bottom:210.626667pt;}
.y242{bottom:210.946667pt;}
.y271{bottom:211.266667pt;}
.ye1{bottom:211.906667pt;}
.y2af{bottom:212.866667pt;}
.y28b{bottom:213.826667pt;}
.y82{bottom:214.466667pt;}
.y2e2{bottom:215.426667pt;}
.y2a7{bottom:216.706667pt;}
.yfd{bottom:217.026667pt;}
.y336{bottom:218.626667pt;}
.y262{bottom:219.266667pt;}
.y13c{bottom:219.586667pt;}
.y12{bottom:220.546667pt;}
.y21f{bottom:220.866667pt;}
.y1a2{bottom:225.346667pt;}
.y1c6{bottom:225.666667pt;}
.y2d5{bottom:227.906667pt;}
.y4c{bottom:228.546667pt;}
.y2b7{bottom:228.866667pt;}
.y25d{bottom:230.466667pt;}
.yfb{bottom:231.106667pt;}
.y1fe{bottom:232.066667pt;}
.y241{bottom:232.386667pt;}
.ybf{bottom:233.026667pt;}
.y122{bottom:235.613333pt;}
.y2e1{bottom:236.573333pt;}
.y333{bottom:237.213333pt;}
.y270{bottom:237.853333pt;}
.ye0{bottom:238.493333pt;}
.y2ae{bottom:239.453333pt;}
.y21e{bottom:240.413333pt;}
.y28a{bottom:240.733333pt;}
.y1e5{bottom:241.053333pt;}
.y81{bottom:242.333333pt;}
.y2a6{bottom:243.293333pt;}
.y303{bottom:243.933333pt;}
.y261{bottom:245.853333pt;}
.y13b{bottom:246.493333pt;}
.y1a1{bottom:246.813333pt;}
.y11{bottom:247.133333pt;}
.y1fd{bottom:253.213333pt;}
.y240{bottom:253.853333pt;}
.y2d4{bottom:254.493333pt;}
.y2b6{bottom:255.453333pt;}
.y25c{bottom:257.053333pt;}
.y2e0{bottom:258.013333pt;}
.yfa{bottom:259.293333pt;}
.ybe{bottom:259.613333pt;}
.y21d{bottom:259.933333pt;}
.y121{bottom:262.493333pt;}
.y26f{bottom:264.733333pt;}
.ydf{bottom:265.053333pt;}
.y2ad{bottom:266.013333pt;}
.y289{bottom:267.293333pt;}
.y4b{bottom:267.613333pt;}
.y1a0{bottom:267.933333pt;}
.y1c5{bottom:268.253333pt;}
.y80{bottom:270.493333pt;}
.y22d{bottom:271.453333pt;}
.y260{bottom:272.413333pt;}
.y13a{bottom:273.053333pt;}
.y10{bottom:273.693333pt;}
.y335{bottom:274.013333pt;}
.y1fc{bottom:274.653333pt;}
.y23f{bottom:274.973333pt;}
.y2df{bottom:279.453333pt;}
.y2d3{bottom:281.053333pt;}
.y2b5{bottom:282.013333pt;}
.y1e4{bottom:283.613333pt;}
.ybd{bottom:286.173333pt;}
.y148{bottom:286.493333pt;}
.yf9{bottom:287.773333pt;}
.y120{bottom:289.053333pt;}
.y19f{bottom:289.373333pt;}
.y1c4{bottom:289.693333pt;}
.y26e{bottom:291.293333pt;}
.yde{bottom:291.613333pt;}
.y332{bottom:292.253333pt;}
.y4a{bottom:293.213333pt;}
.y288{bottom:293.853333pt;}
.y2a4{bottom:294.173333pt;}
.y1fb{bottom:296.093333pt;}
.y23e{bottom:296.413333pt;}
.y302{bottom:297.053333pt;}
.y7f{bottom:298.333333pt;}
.y139{bottom:299.613333pt;}
.ye{bottom:300.253333pt;}
.y2de{bottom:300.573333pt;}
.ybc{bottom:303.773333pt;}
.y1e3{bottom:305.053333pt;}
.y2d2{bottom:307.613333pt;}
.y1c3{bottom:308.573333pt;}
.y25b{bottom:310.173333pt;}
.y19e{bottom:310.813333pt;}
.y147{bottom:313.053333pt;}
.y11f{bottom:315.613333pt;}
.yf8{bottom:315.933333pt;}
.y1fa{bottom:317.213333pt;}
.y23d{bottom:317.853333pt;}
.ydd{bottom:318.173333pt;}
.y287{bottom:320.413333pt;}
.y2a3{bottom:321.053333pt;}
.y2dd{bottom:322.013333pt;}
.y6a{bottom:323.293333pt;}
.y301{bottom:323.613333pt;}
.y138{bottom:326.173333pt;}
.y7e{bottom:326.493333pt;}
.y2b{bottom:326.813333pt;}
.y1c2{bottom:330.333333pt;}
.y19d{bottom:331.933333pt;}
.ybb{bottom:334.173333pt;}
.y22c{bottom:334.493333pt;}
.y21a{bottom:335.133333pt;}
.y1f9{bottom:336.093333pt;}
.y25a{bottom:336.733333pt;}
.y23c{bottom:338.973333pt;}
.y146{bottom:339.613333pt;}
.y11e{bottom:342.173333pt;}
.yf6{bottom:344.413333pt;}
.ydc{bottom:345.053333pt;}
.y2a5{bottom:346.013333pt;}
.y286{bottom:346.973333pt;}
.y1e2{bottom:347.613333pt;}
.y300{bottom:350.173333pt;}
.y69{bottom:350.493333pt;}
.y1c0{bottom:352.413333pt;}
.y137{bottom:352.733333pt;}
.y19c{bottom:353.373333pt;}
.y29{bottom:353.693333pt;}
.y7d{bottom:354.373333pt;}
.y1f8{bottom:355.653333pt;}
.y2dc{bottom:357.253333pt;}
.y2b4{bottom:358.533333pt;}
.y23b{bottom:360.453333pt;}
.yba{bottom:360.773333pt;}
.y259{bottom:363.653333pt;}
.y32e{bottom:364.293333pt;}
.y145{bottom:366.213333pt;}
.y11d{bottom:368.773333pt;}
.y1e1{bottom:369.093333pt;}
.y26d{bottom:371.013333pt;}
.y219{bottom:371.333333pt;}
.ydb{bottom:371.653333pt;}
.yf5{bottom:372.613333pt;}
.y48{bottom:373.573333pt;}
.y2a2{bottom:374.213333pt;}
.y1be{bottom:374.533333pt;}
.y19b{bottom:374.853333pt;}
.y1f7{bottom:375.173333pt;}
.y2ff{bottom:376.773333pt;}
.y22b{bottom:377.093333pt;}
.y68{bottom:377.733333pt;}
.y136{bottom:379.333333pt;}
.y28{bottom:380.293333pt;}
.y23a{bottom:381.893333pt;}
.y7c{bottom:382.533333pt;}
.y2d1{bottom:387.333333pt;}
.yb9{bottom:387.653333pt;}
.y47{bottom:387.973333pt;}
.y258{bottom:390.213333pt;}
.y1e0{bottom:390.533333pt;}
.y2db{bottom:391.813333pt;}
.y144{bottom:392.773333pt;}
.y1f6{bottom:394.693333pt;}
.y11c{bottom:395.333333pt;}
.y19a{bottom:395.973333pt;}
.y26c{bottom:397.573333pt;}
.yda{bottom:398.213333pt;}
.y22a{bottom:398.533333pt;}
.y285{bottom:400.133333pt;}
.y331{bottom:400.453333pt;}
.y2a1{bottom:400.773333pt;}
.yf4{bottom:401.093333pt;}
.y239{bottom:403.013333pt;}
.y2fe{bottom:403.333333pt;}
.y67{bottom:404.933333pt;}
.y135{bottom:405.893333pt;}
.y27{bottom:406.853333pt;}
.y218{bottom:407.493333pt;}
.y7b{bottom:410.373333pt;}
.y1df{bottom:411.653333pt;}
.y45{bottom:412.293333pt;}
.y2d0{bottom:413.893333pt;}
.yb8{bottom:414.213333pt;}
.y257{bottom:416.773333pt;}
.y199{bottom:417.413333pt;}
.y1bd{bottom:417.733333pt;}
.y143{bottom:419.333333pt;}
.y229{bottom:419.653333pt;}
.y2da{bottom:420.933333pt;}
.y11b{bottom:421.893333pt;}
.y26b{bottom:424.133333pt;}
.y238{bottom:424.453333pt;}
.yd9{bottom:424.773333pt;}
.y284{bottom:426.693333pt;}
.y2a0{bottom:427.333333pt;}
.y217{bottom:428.613333pt;}
.yf3{bottom:429.253333pt;}
.y2fd{bottom:430.213333pt;}
.y66{bottom:432.133333pt;}
.y134{bottom:432.453333pt;}
.y1de{bottom:433.093333pt;}
.y26{bottom:433.413333pt;}
.y1f4{bottom:433.733333pt;}
.y16b{bottom:435.973333pt;}
.y330{bottom:436.613333pt;}
.y7a{bottom:438.533333pt;}
.y198{bottom:438.853333pt;}
.yb7{bottom:440.773333pt;}
.y228{bottom:441.093333pt;}
.y256{bottom:443.333333pt;}
.y142{bottom:445.893333pt;}
.y17d{bottom:447.813333pt;}
.y11a{bottom:448.773333pt;}
.y26a{bottom:450.693333pt;}
.yd8{bottom:451.333333pt;}
.y1f3{bottom:453.253333pt;}
.y283{bottom:453.573333pt;}
.y29f{bottom:453.893333pt;}
.y1dd{bottom:454.533333pt;}
.y1bc{bottom:456.453333pt;}
.y2fc{bottom:456.773333pt;}
.y16a{bottom:457.413333pt;}
.yf2{bottom:457.733333pt;}
.y216{bottom:458.053333pt;}
.y65{bottom:459.013333pt;}
.y133{bottom:459.333333pt;}
.y22{bottom:459.973333pt;}
.y43{bottom:460.933333pt;}
.y114{bottom:461.253333pt;}
.y227{bottom:462.533333pt;}
.y79{bottom:466.373333pt;}
.y237{bottom:467.013333pt;}
.yb6{bottom:467.333333pt;}
.y150{bottom:468.933333pt;}
.y31b{bottom:469.253333pt;}
.y255{bottom:469.893333pt;}
.y141{bottom:472.773333pt;}
.y119{bottom:475.360000pt;}
.y1dc{bottom:475.680000pt;}
.y17c{bottom:476.960000pt;}
.y194{bottom:477.280000pt;}
.y269{bottom:477.600000pt;}
.yd7{bottom:477.920000pt;}
.y169{bottom:478.560000pt;}
.y215{bottom:479.520000pt;}
.y282{bottom:480.160000pt;}
.y29e{bottom:480.480000pt;}
.y2fb{bottom:483.360000pt;}
.y226{bottom:483.680000pt;}
.y1bb{bottom:485.600000pt;}
.y132{bottom:485.920000pt;}
.y64{bottom:486.240000pt;}
.y2ea{bottom:486.560000pt;}
.y14f{bottom:486.880000pt;}
.y236{bottom:488.480000pt;}
.y2ce{bottom:491.040000pt;}
.y1f1{bottom:492.320000pt;}
.y31a{bottom:492.640000pt;}
.y32c{bottom:493.600000pt;}
.yb5{bottom:493.920000pt;}
.y78{bottom:494.560000pt;}
.y254{bottom:496.480000pt;}
.y192{bottom:496.800000pt;}
.y17b{bottom:498.400000pt;}
.y113{bottom:499.360000pt;}
.y168{bottom:500.000000pt;}
.y214{bottom:500.640000pt;}
.y159{bottom:501.920000pt;}
.y118{bottom:504.160000pt;}
.yd6{bottom:504.480000pt;}
.y225{bottom:505.120000pt;}
.y1db{bottom:506.080000pt;}
.y281{bottom:506.720000pt;}
.y1ba{bottom:507.040000pt;}
.y1e{bottom:508.000000pt;}
.y40{bottom:509.600000pt;}
.y235{bottom:509.920000pt;}
.y1f0{bottom:511.840000pt;}
.y63{bottom:513.440000pt;}
.y319{bottom:514.080000pt;}
.yf1{bottom:514.400000pt;}
.y131{bottom:514.720000pt;}
.y17a{bottom:519.840000pt;}
.yb4{bottom:520.480000pt;}
.y2e9{bottom:521.120000pt;}
.y167{bottom:521.440000pt;}
.y213{bottom:522.080000pt;}
.y77{bottom:522.400000pt;}
.y253{bottom:523.040000pt;}
.y112{bottom:525.920000pt;}
.y224{bottom:526.560000pt;}
.y158{bottom:528.480000pt;}
.y268{bottom:530.720000pt;}
.yd5{bottom:531.040000pt;}
.y1ee{bottom:531.680000pt;}
.y191{bottom:532.640000pt;}
.y280{bottom:533.280000pt;}
.y29d{bottom:533.920000pt;}
.y98{bottom:534.560000pt;}
.y328{bottom:534.880000pt;}
.y2fa{bottom:536.480000pt;}
.y14e{bottom:540.000000pt;}
.y5d{bottom:540.640000pt;}
.y179{bottom:540.960000pt;}
.y166{bottom:542.560000pt;}
.y212{bottom:543.520000pt;}
.yb3{bottom:547.040000pt;}
.y1da{bottom:547.680000pt;}
.y1b9{bottom:549.600000pt;}
.y76{bottom:550.560000pt;}
.y111{bottom:552.480000pt;}
.y2cc{bottom:553.120000pt;}
.y157{bottom:555.040000pt;}
.y32a{bottom:555.360000pt;}
.y2e8{bottom:555.680000pt;}
.y1c{bottom:556.000000pt;}
.y267{bottom:557.280000pt;}
.yd4{bottom:557.920000pt;}
.yf0{bottom:559.520000pt;}
.y27f{bottom:559.840000pt;}
.y29c{bottom:560.480000pt;}
.y97{bottom:561.440000pt;}
.y178{bottom:562.400000pt;}
.y2f9{bottom:563.040000pt;}
.y165{bottom:564.000000pt;}
.y211{bottom:564.640000pt;}
.y318{bottom:567.200000pt;}
.y1ed{bottom:567.520000pt;}
.y130{bottom:568.480000pt;}
.y18e{bottom:568.800000pt;}
.y1d9{bottom:569.120000pt;}
.y3f{bottom:570.400000pt;}
.y1b8{bottom:571.040000pt;}
.yb2{bottom:573.600000pt;}
.y234{bottom:573.920000pt;}
.y14d{bottom:575.520000pt;}
.y329{bottom:576.160000pt;}
.ya4{bottom:576.480000pt;}
.y110{bottom:579.040000pt;}
.y156{bottom:581.600000pt;}
.y1a{bottom:582.560000pt;}
.y348{bottom:583.266667pt;}
.y177{bottom:583.840000pt;}
.yd3{bottom:584.480000pt;}
.y2e7{bottom:584.800000pt;}
.y317{bottom:585.120000pt;}
.y164{bottom:585.440000pt;}
.y210{bottom:586.080000pt;}
.y27e{bottom:586.400000pt;}
.y29b{bottom:587.040000pt;}
.y2f8{bottom:589.600000pt;}
.y1d8{bottom:590.560000pt;}
.y1b7{bottom:592.506667pt;}
.y14c{bottom:593.146667pt;}
.y3e{bottom:594.746667pt;}
.y12f{bottom:595.066667pt;}
.y75{bottom:595.706667pt;}
.y326{bottom:596.986667pt;}
.yef{bottom:597.626667pt;}
.yb1{bottom:600.506667pt;}
.y316{bottom:602.746667pt;}
.y252{bottom:603.066667pt;}
.y1ec{bottom:604.026667pt;}
.y176{bottom:604.986667pt;}
.ya3{bottom:605.306667pt;}
.y10f{bottom:605.626667pt;}
.y163{bottom:606.586667pt;}
.y20f{bottom:607.546667pt;}
.y155{bottom:608.186667pt;}
.y291{bottom:610.426667pt;}
.yd2{bottom:611.066667pt;}
.y1d7{bottom:611.706667pt;}
.y27d{bottom:612.986667pt;}
.y1b6{bottom:613.626667pt;}
.y2c7{bottom:615.226667pt;}
.y2f7{bottom:616.186667pt;}
.y233{bottom:616.506667pt;}
.y327{bottom:617.466667pt;}
.y3d{bottom:619.066667pt;}
.y315{bottom:620.346667pt;}
.y347{bottom:620.413333pt;}
.y12e{bottom:621.626667pt;}
.y175{bottom:623.226667pt;}
.y74{bottom:623.866667pt;}
.yee{bottom:624.186667pt;}
.y1eb{bottom:625.146667pt;}
.y96{bottom:626.106667pt;}
.yb0{bottom:627.066667pt;}
.y162{bottom:628.026667pt;}
.y14b{bottom:628.666667pt;}
.y251{bottom:629.626667pt;}
.y10e{bottom:632.186667pt;}
.y1d6{bottom:633.146667pt;}
.ya2{bottom:634.106667pt;}
.y1b5{bottom:635.066667pt;}
.y290{bottom:636.986667pt;}
.y154{bottom:637.306667pt;}
.yd1{bottom:637.626667pt;}
.y232{bottom:637.946667pt;}
.y314{bottom:638.266667pt;}
.y27c{bottom:639.546667pt;}
.y29a{bottom:640.186667pt;}
.y18c{bottom:641.466667pt;}
.y91{bottom:642.106667pt;}
.yd{bottom:642.426667pt;}
.y2f6{bottom:643.066667pt;}
.y3a{bottom:643.386667pt;}
.y14a{bottom:646.586667pt;}
.y20e{bottom:647.546667pt;}
.y12d{bottom:648.186667pt;}
.yed{bottom:650.746667pt;}
.y73{bottom:651.706667pt;}
.yc{bottom:652.026667pt;}
.yaf{bottom:653.626667pt;}
.y1d5{bottom:654.586667pt;}
.y313{bottom:655.866667pt;}
.y250{bottom:656.186667pt;}
.y1b4{bottom:656.506667pt;}
.y346{bottom:657.533333pt;}
.y95{bottom:658.426667pt;}
.y10d{bottom:658.746667pt;}
.y231{bottom:659.066667pt;}
.ya1{bottom:662.906667pt;}
.yd0{bottom:664.186667pt;}
.y27b{bottom:666.426667pt;}
.y299{bottom:666.746667pt;}
.y20d{bottom:667.066667pt;}
.y2f5{bottom:669.626667pt;}
.y18b{bottom:670.586667pt;}
.y312{bottom:673.786667pt;}
.y90{bottom:674.426667pt;}
.y12c{bottom:674.746667pt;}
.y1d4{bottom:675.706667pt;}
.y5c{bottom:677.306667pt;}
.y1b3{bottom:677.626667pt;}
.y325{bottom:679.546667pt;}
.y72{bottom:679.866667pt;}
.yae{bottom:680.186667pt;}
.y230{bottom:680.506667pt;}
.y345{bottom:680.613333pt;}
.yb{bottom:682.106667pt;}
.y24f{bottom:682.746667pt;}
.y94{bottom:684.986667pt;}
.y10c{bottom:685.626667pt;}
.y20c{bottom:686.586667pt;}
.y39{bottom:689.466667pt;}
.ycf{bottom:690.746667pt;}
.y311{bottom:691.386667pt;}
.ya0{bottom:691.706667pt;}
.y27a{bottom:692.986667pt;}
.y298{bottom:693.306667pt;}
.y2f4{bottom:696.186667pt;}
.y1d3{bottom:697.146667pt;}
.y22f{bottom:698.746667pt;}
.y1b2{bottom:699.066667pt;}
.y161{bottom:700.026667pt;}
.y324{bottom:700.346667pt;}
.y8f{bottom:700.986667pt;}
.y12b{bottom:701.306667pt;}
.y344{bottom:701.733333pt;}
.y93{bottom:702.586667pt;}
.yec{bottom:704.186667pt;}
.y5a{bottom:704.506667pt;}
.y20b{bottom:706.106667pt;}
.yad{bottom:706.746667pt;}
.y24e{bottom:709.306667pt;}
.y10b{bottom:712.226667pt;}
.y18a{bottom:713.186667pt;}
.y38{bottom:716.066667pt;}
.yce{bottom:717.346667pt;}
.y1d2{bottom:718.626667pt;}
.y279{bottom:719.586667pt;}
.y297{bottom:719.906667pt;}
.y9f{bottom:720.546667pt;}
.y321{bottom:720.866667pt;}
.y160{bottom:721.506667pt;}
.y2f3{bottom:722.786667pt;}
.y343{bottom:723.173333pt;}
.y92{bottom:723.746667pt;}
.y71{bottom:725.346667pt;}
.y20a{bottom:725.666667pt;}
.y4{bottom:725.986667pt;}
.y310{bottom:726.946667pt;}
.y8e{bottom:727.586667pt;}
.y12a{bottom:727.906667pt;}
.yeb{bottom:730.786667pt;}
.y58{bottom:731.746667pt;}
.y2ac{bottom:732.386667pt;}
.yac{bottom:733.346667pt;}
.y189{bottom:734.626667pt;}
.y24d{bottom:735.906667pt;}
.y342{bottom:738.146667pt;}
.y10a{bottom:738.786667pt;}
.y2c2{bottom:739.106667pt;}
.y1b1{bottom:739.426667pt;}
.y1d1{bottom:739.746667pt;}
.y323{bottom:741.666667pt;}
.y37{bottom:742.626667pt;}
.ycd{bottom:743.906667pt;}
.y30f{bottom:744.546667pt;}
.y8d{bottom:745.186667pt;}
.y278{bottom:746.146667pt;}
.y296{bottom:746.786667pt;}
.y9e{bottom:749.346667pt;}
.y70{bottom:753.186667pt;}
.y129{bottom:754.466667pt;}
.y188{bottom:755.746667pt;}
.yea{bottom:757.346667pt;}
.yab{bottom:759.906667pt;}
.y1ae{bottom:761.186667pt;}
.y322{bottom:762.146667pt;}
.y24c{bottom:762.466667pt;}
.y15f{bottom:764.066667pt;}
.y209{bottom:764.706667pt;}
.y109{bottom:765.346667pt;}
.y8c{bottom:766.626667pt;}
.y36{bottom:769.186667pt;}
.ycc{bottom:770.786667pt;}
.y57{bottom:771.106667pt;}
.y277{bottom:772.706667pt;}
.y2f2{bottom:775.906667pt;}
.y187{bottom:777.186667pt;}
.y9d{bottom:778.146667pt;}
.y30e{bottom:780.066667pt;}
.y6f{bottom:781.346667pt;}
.y1d0{bottom:782.626667pt;}
.y31e{bottom:782.946667pt;}
.ye9{bottom:783.906667pt;}
.y208{bottom:784.546667pt;}
.y15e{bottom:785.506667pt;}
.y128{bottom:786.146667pt;}
.yaa{bottom:786.466667pt;}
.y8b{bottom:787.746667pt;}
.y24b{bottom:789.346667pt;}
.y108{bottom:791.906667pt;}
.y35{bottom:796.066667pt;}
.ycb{bottom:797.346667pt;}
.y30d{bottom:797.986667pt;}
.y55{bottom:798.306667pt;}
.y186{bottom:798.626667pt;}
.y341{bottom:799.266667pt;}
.y276{bottom:799.906667pt;}
.y2bf{bottom:801.186667pt;}
.y2f1{bottom:802.466667pt;}
.y320{bottom:803.426667pt;}
.y1cf{bottom:803.746667pt;}
.y207{bottom:804.066667pt;}
.y1ad{bottom:804.706667pt;}
.y15d{bottom:806.626667pt;}
.y9c{bottom:806.946667pt;}
.y6e{bottom:809.186667pt;}
.ye8{bottom:810.466667pt;}
.ya9{bottom:813.346667pt;}
.y30c{bottom:815.586667pt;}
.y24a{bottom:815.906667pt;}
.y107{bottom:818.466667pt;}
.y340{bottom:819.426667pt;}
.y185{bottom:819.746667pt;}
.y34{bottom:821.026667pt;}
.y206{bottom:823.586667pt;}
.yca{bottom:823.906667pt;}
.y31f{bottom:824.226667pt;}
.y1ce{bottom:825.186667pt;}
.y53{bottom:825.506667pt;}
.y1ab{bottom:826.466667pt;}
.y15c{bottom:828.066667pt;}
.y2f0{bottom:829.026667pt;}
.y8a{bottom:830.653333pt;}
.y30b{bottom:833.533333pt;}
.y9b{bottom:835.773333pt;}
.ye7{bottom:837.053333pt;}
.y33f{bottom:838.973333pt;}
.ya8{bottom:839.933333pt;}
.y184{bottom:841.213333pt;}
.y249{bottom:842.493333pt;}
.y205{bottom:843.133333pt;}
.y106{bottom:845.053333pt;}
.y33{bottom:846.653333pt;}
.y1aa{bottom:848.573333pt;}
.yc9{bottom:850.493333pt;}
.y30a{bottom:851.133333pt;}
.y89{bottom:851.773333pt;}
.y51{bottom:852.733333pt;}
.y275{bottom:853.053333pt;}
.y6d{bottom:854.653333pt;}
.y2ef{bottom:855.933333pt;}
.y33e{bottom:857.853333pt;}
.y174{bottom:860.093333pt;}
.y15b{bottom:860.733333pt;}
.y183{bottom:862.653333pt;}
.y2be{bottom:863.293333pt;}
.ye6{bottom:863.613333pt;}
.y9a{bottom:864.573333pt;}
.ya7{bottom:866.493333pt;}
.y1cd{bottom:867.773333pt;}
.y309{bottom:868.733333pt;}
.y248{bottom:869.053333pt;}
.y1a9{bottom:870.653333pt;}
.y105{bottom:871.613333pt;}
.y88{bottom:873.213333pt;}
.y33d{bottom:876.733333pt;}
.yc8{bottom:877.053333pt;}
.y31d{bottom:878.653333pt;}
.y204{bottom:879.293333pt;}
.y2ee{bottom:882.493333pt;}
.y182{bottom:883.773333pt;}
.y308{bottom:886.653333pt;}
.y173{bottom:889.213333pt;}
.ye5{bottom:892.733333pt;}
.ya6{bottom:893.053333pt;}
.y32{bottom:893.373333pt;}
.y87{bottom:894.653333pt;}
.y33c{bottom:895.613333pt;}
.y104{bottom:898.493333pt;}
.y2bc{bottom:899.453333pt;}
.y22e{bottom:902.653333pt;}
.yc7{bottom:903.613333pt;}
.y307{bottom:904.253333pt;}
.y181{bottom:905.213333pt;}
.y172{bottom:910.653333pt;}
.y6c{bottom:913.853333pt;}
.y1a8{bottom:914.493333pt;}
.y33b{bottom:915.133333pt;}
.y31c{bottom:915.453333pt;}
.y86{bottom:915.773333pt;}
.y49{bottom:918.653333pt;}
.y31{bottom:918.973333pt;}
.ya5{bottom:919.613333pt;}
.y306{bottom:921.533333pt;}
.y247{bottom:922.173333pt;}
.y103{bottom:925.053333pt;}
.y180{bottom:926.653333pt;}
.yc6{bottom:930.173333pt;}
.y171{bottom:931.773333pt;}
.y203{bottom:932.093333pt;}
.y6b{bottom:951.333333pt;}
.y170{bottom:953.253333pt;}
.y1a7{bottom:953.573333pt;}
.y102{bottom:954.213333pt;}
.yc5{bottom:957.093333pt;}
.y15a{bottom:962.533333pt;}
.y2f{bottom:1009.893333pt;}
.y2e{bottom:1031.013333pt;}
.y1{bottom:1043.173333pt;}
.y2d{bottom:1052.453333pt;}
.y2c{bottom:1066.932533pt;}
.h9{height:4.680000pt;}
.h4a{height:17.600000pt;}
.h4b{height:17.920000pt;}
.h4e{height:17.952000pt;}
.h35{height:18.560000pt;}
.h31{height:18.880000pt;}
.h36{height:18.912000pt;}
.h47{height:19.840000pt;}
.h48{height:19.872000pt;}
.h44{height:20.160000pt;}
.h46{height:20.192000pt;}
.h38{height:21.120000pt;}
.h37{height:21.440000pt;}
.h39{height:21.472000pt;}
.h2f{height:23.244375pt;}
.h18{height:24.320000pt;}
.h19{height:24.352000pt;}
.h23{height:26.240000pt;}
.h12{height:26.552000pt;}
.ha{height:26.560000pt;}
.hc{height:26.592000pt;}
.hd{height:26.880000pt;}
.h2b{height:27.520000pt;}
.h2c{height:27.552000pt;}
.h2a{height:27.840000pt;}
.h26{height:28.160000pt;}
.h27{height:28.192000pt;}
.he{height:28.832000pt;}
.h2e{height:29.885625pt;}
.h1f{height:32.298750pt;}
.h45{height:32.960000pt;}
.h15{height:33.920000pt;}
.h1a{height:34.240000pt;}
.h34{height:35.200000pt;}
.h33{height:35.520000pt;}
.h32{height:35.552000pt;}
.h3d{height:36.480000pt;}
.h3{height:36.526875pt;}
.h2{height:36.547500pt;}
.h13{height:37.631250pt;}
.h20{height:38.610000pt;}
.h21{height:38.720000pt;}
.h1e{height:39.040000pt;}
.h16{height:41.107500pt;}
.hf{height:42.061250pt;}
.h3b{height:42.560000pt;}
.h3a{height:42.880000pt;}
.h1d{height:45.022500pt;}
.hb{height:46.488750pt;}
.h7{height:46.515000pt;}
.h10{height:48.000000pt;}
.h11{height:48.032000pt;}
.h1c{height:48.640000pt;}
.h1b{height:48.672000pt;}
.h14{height:49.140000pt;}
.h4{height:50.730000pt;}
.h43{height:53.760000pt;}
.h4c{height:54.400000pt;}
.h4d{height:54.752000pt;}
.h2d{height:55.256809pt;}
.h6{height:55.375000pt;}
.h30{height:55.965000pt;}
.h17{height:56.767500pt;}
.h25{height:58.563750pt;}
.h42{height:59.805000pt;}
.h41{height:61.120000pt;}
.h40{height:61.152000pt;}
.h3f{height:61.440000pt;}
.h3e{height:61.472000pt;}
.h24{height:64.235000pt;}
.h3c{height:65.781915pt;}
.h29{height:66.625000pt;}
.h28{height:77.285000pt;}
.h8{height:78.632500pt;}
.h49{height:107.840000pt;}
.h22{height:136.026667pt;}
.h5{height:160.026667pt;}
.h4f{height:793.280000pt;}
.h50{height:793.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:31.680000pt;}
.w30{width:34.240000pt;}
.w8{width:34.272000pt;}
.w2f{width:34.560000pt;}
.w32{width:34.880000pt;}
.w31{width:35.552000pt;}
.w2e{width:37.760000pt;}
.w2d{width:37.792000pt;}
.w2c{width:39.040000pt;}
.w3e{width:41.280000pt;}
.w25{width:41.632000pt;}
.w2b{width:45.472000pt;}
.w1b{width:46.752000pt;}
.w37{width:47.040000pt;}
.w3b{width:47.360000pt;}
.w34{width:47.392000pt;}
.wc{width:52.512000pt;}
.w38{width:56.672000pt;}
.w9{width:59.520000pt;}
.w33{width:63.712000pt;}
.w14{width:72.992000pt;}
.w39{width:75.232000pt;}
.w22{width:91.552000pt;}
.w23{width:92.832000pt;}
.w16{width:93.472000pt;}
.w24{width:94.752000pt;}
.w3a{width:101.504000pt;}
.w26{width:108.224000pt;}
.w29{width:111.104000pt;}
.w3f{width:114.624000pt;}
.w19{width:122.304000pt;}
.w5{width:122.944000pt;}
.w3d{width:138.626667pt;}
.w3c{width:140.226667pt;}
.w36{width:148.866667pt;}
.w28{width:161.986667pt;}
.w27{width:162.306667pt;}
.w11{width:169.986667pt;}
.w12{width:189.213333pt;}
.wa{width:199.453333pt;}
.w17{width:207.453333pt;}
.w4{width:226.973333pt;}
.wd{width:227.613333pt;}
.w10{width:243.933333pt;}
.w6{width:244.573333pt;}
.w13{width:245.213333pt;}
.we{width:258.973333pt;}
.w21{width:276.293333pt;}
.w1f{width:301.893333pt;}
.w1e{width:309.253333pt;}
.wf{width:359.520000pt;}
.w2a{width:360.453333pt;}
.w18{width:396.000000pt;}
.w35{width:422.906667pt;}
.w15{width:436.986667pt;}
.w1c{width:472.506667pt;}
.w1a{width:481.146667pt;}
.w20{width:597.373333pt;}
.w3{width:603.773333pt;}
.w7{width:605.053333pt;}
.w1d{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w42{width:1122.559983pt;}
.w40{width:1122.560000pt;}
.w41{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4b{left:4.800000pt;}
.x16{left:7.040000pt;}
.x3c{left:8.000000pt;}
.x10{left:14.080000pt;}
.xc{left:17.600000pt;}
.x38{left:19.520000pt;}
.x3{left:52.514667pt;}
.x2{left:94.431988pt;}
.x23{left:97.951988pt;}
.x1f{left:118.463988pt;}
.x1a{left:126.463988pt;}
.xd{left:128.704000pt;}
.x26{left:132.223988pt;}
.x1{left:140.866655pt;}
.x1d{left:141.826667pt;}
.x7{left:143.101333pt;}
.x6{left:146.301333pt;}
.x4f{left:151.066650pt;}
.x3a{left:156.546667pt;}
.x44{left:158.786667pt;}
.x1b{left:162.626655pt;}
.x21{left:166.786655pt;}
.x17{left:168.066667pt;}
.x30{left:169.986655pt;}
.x9{left:187.266655pt;}
.xe{left:188.226667pt;}
.x2f{left:190.466655pt;}
.x4a{left:196.573333pt;}
.x33{left:203.293333pt;}
.x39{left:206.173333pt;}
.x5{left:213.541333pt;}
.x1c{left:217.373333pt;}
.x20{left:221.853322pt;}
.x4c{left:234.653333pt;}
.x8{left:238.821333pt;}
.x45{left:243.933333pt;}
.x3d{left:245.213333pt;}
.x4{left:246.821333pt;}
.x15{left:264.413333pt;}
.x29{left:280.453322pt;}
.x3e{left:283.013333pt;}
.x22{left:286.533322pt;}
.x46{left:291.333333pt;}
.x19{left:302.533333pt;}
.x28{left:308.293322pt;}
.xa{left:321.413333pt;}
.x27{left:330.373322pt;}
.x47{left:338.373333pt;}
.x3f{left:358.560000pt;}
.x34{left:365.600000pt;}
.x2b{left:371.360000pt;}
.x4d{left:373.280000pt;}
.x48{left:385.760000pt;}
.xf{left:387.680000pt;}
.x40{left:393.120000pt;}
.x2a{left:404.960000pt;}
.x4e{left:414.560000pt;}
.x11{left:419.360000pt;}
.x41{left:427.360000pt;}
.x49{left:442.426667pt;}
.xb{left:444.346667pt;}
.x13{left:453.946667pt;}
.x2c{left:462.906667pt;}
.x12{left:471.866667pt;}
.x42{left:497.466667pt;}
.x24{left:505.786643pt;}
.x25{left:510.626655pt;}
.x35{left:527.906667pt;}
.x43{left:531.746667pt;}
.x2d{left:555.746667pt;}
.x36{left:564.386655pt;}
.x3b{left:566.626667pt;}
.x37{left:572.706655pt;}
.x14{left:599.856040pt;}
.x18{left:605.053333pt;}
.x31{left:648.573322pt;}
.x2e{left:650.493333pt;}
.x1e{left:668.773322pt;}
.x32{left:698.853322pt;}
.x50{left:979.133317pt;}
}




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