
    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_61c7b1a6a2a6eb35e42a47ff.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b7cb3d340107babd64c513dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000488;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_15e087bf77f491e75bad7c17.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.174316;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_642bff63eb8d7dcf96f9dd20.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200684;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_00422da3398c6662bcee9894.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1d90d2960cf5e743f5a95fac.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2680e97483ba2c2a990b35a7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4a3349c2a76119bbeaaf45b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.809082;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_e72b32fa9313e87f90367533.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.119400px;}
.ls4e{letter-spacing:-1.296000px;}
.ls4a{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-0.956160px;}
.ls46{letter-spacing:-0.918000px;}
.ls16{letter-spacing:-0.756000px;}
.ls17{letter-spacing:-0.702000px;}
.ls44{letter-spacing:-0.657360px;}
.ls1b{letter-spacing:-0.648000px;}
.ls1c{letter-spacing:-0.594000px;}
.ls47{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.530640px;}
.ls4b{letter-spacing:-0.486000px;}
.ls39{letter-spacing:-0.483646px;}
.ls36{letter-spacing:-0.478080px;}
.ls49{letter-spacing:-0.378000px;}
.ls34{letter-spacing:-0.363065px;}
.ls25{letter-spacing:-0.358560px;}
.lse{letter-spacing:-0.337680px;}
.ls13{letter-spacing:-0.336960px;}
.ls1e{letter-spacing:-0.324000px;}
.ls51{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.239040px;}
.ls30{letter-spacing:-0.229594px;}
.ls1d{letter-spacing:-0.216000px;}
.ls38{letter-spacing:-0.214954px;}
.lsc{letter-spacing:-0.192960px;}
.ls27{letter-spacing:-0.179280px;}
.ls19{letter-spacing:-0.162000px;}
.ls35{letter-spacing:-0.155599px;}
.ls26{letter-spacing:-0.119520px;}
.ls2f{letter-spacing:-0.114797px;}
.ls48{letter-spacing:-0.108000px;}
.ls23{letter-spacing:-0.059760px;}
.ls2d{letter-spacing:-0.057398px;}
.ls45{letter-spacing:-0.054000px;}
.ls3a{letter-spacing:-0.053738px;}
.ls40{letter-spacing:-0.053288px;}
.lsb{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.046334px;}
.ls18{letter-spacing:0.054000px;}
.ls32{letter-spacing:0.057398px;}
.ls28{letter-spacing:0.071712px;}
.ls15{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.114797px;}
.ls5{letter-spacing:0.119520px;}
.ls3e{letter-spacing:0.159865px;}
.ls3c{letter-spacing:0.161215px;}
.ls7{letter-spacing:0.162000px;}
.ls33{letter-spacing:0.172195px;}
.ls1{letter-spacing:0.179280px;}
.ls3d{letter-spacing:0.191232px;}
.lsf{letter-spacing:0.192960px;}
.ls1a{letter-spacing:0.216000px;}
.ls42{letter-spacing:0.221112px;}
.ls4{letter-spacing:0.239040px;}
.ls6{letter-spacing:0.262944px;}
.ls3f{letter-spacing:0.266442px;}
.ls3b{letter-spacing:0.268692px;}
.ls14{letter-spacing:0.270000px;}
.ls21{letter-spacing:0.280872px;}
.ls2e{letter-spacing:0.286992px;}
.ls12{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.337680px;}
.ls9{letter-spacing:0.358560px;}
.ls8{letter-spacing:0.378000px;}
.lsd{letter-spacing:0.385920px;}
.ls37{letter-spacing:0.478080px;}
.ls24{letter-spacing:0.597600px;}
.ls29{letter-spacing:0.896400px;}
.ls4f{letter-spacing:0.918000px;}
.ls1f{letter-spacing:1.613520px;}
.ls50{letter-spacing:2.322000px;}
.ls41{letter-spacing:2.330640px;}
.ls20{letter-spacing:3.047760px;}
.ls22{letter-spacing:4.482000px;}
.ls3{letter-spacing:5.104944px;}
.ls4d{letter-spacing:6.642000px;}
.lsa{letter-spacing:7.350480px;}
.ls43{letter-spacing:9.558000px;}
.ls2{letter-spacing:16.200000px;}
.ls4c{letter-spacing:21.762000px;}
.ls2b{letter-spacing:64.002960px;}
.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;}
}
.ws77{word-spacing:-59.760000px;}
.ws5{word-spacing:-27.324000px;}
.ws78{word-spacing:-15.537600px;}
.ws6{word-spacing:-15.298560px;}
.ws8{word-spacing:-15.179040px;}
.wsa2{word-spacing:-15.119280px;}
.wsac{word-spacing:-14.940000px;}
.ws91{word-spacing:-14.880240px;}
.ws3e{word-spacing:-14.760720px;}
.ws4{word-spacing:-14.700960px;}
.ws3d{word-spacing:-14.581440px;}
.wsa{word-spacing:-13.878000px;}
.wsf6{word-spacing:-13.770000px;}
.wsc8{word-spacing:-13.662000px;}
.ws10{word-spacing:-13.608000px;}
.wsa3{word-spacing:-13.554000px;}
.wsc{word-spacing:-13.500000px;}
.wsc9{word-spacing:-13.446000px;}
.wsca{word-spacing:-13.392000px;}
.wse{word-spacing:-13.338000px;}
.wsae{word-spacing:-13.284000px;}
.ws13e{word-spacing:-13.230000px;}
.wsf8{word-spacing:-13.176000px;}
.ws7f{word-spacing:-13.144234px;}
.wsc7{word-spacing:-13.122000px;}
.ws7c{word-spacing:-13.086835px;}
.ws7d{word-spacing:-13.029437px;}
.ws7a{word-spacing:-12.914640px;}
.wsf7{word-spacing:-12.906000px;}
.ws7b{word-spacing:-12.857242px;}
.wsf{word-spacing:-12.852000px;}
.wsd{word-spacing:-12.798000px;}
.wsb{word-spacing:-12.744000px;}
.ws7e{word-spacing:-12.742445px;}
.wsad{word-spacing:-12.582000px;}
.ws0{word-spacing:-12.445920px;}
.ws2{word-spacing:-12.060000px;}
.ws93{word-spacing:-11.929925px;}
.ws3{word-spacing:-11.867040px;}
.ws1{word-spacing:-11.722320px;}
.ws7{word-spacing:-9.000000px;}
.ws9{word-spacing:-8.280000px;}
.ws4d{word-spacing:-3.585600px;}
.ws5e{word-spacing:-3.346560px;}
.ws72{word-spacing:-3.286800px;}
.wsda{word-spacing:-3.186000px;}
.wsd8{word-spacing:-2.970000px;}
.ws41{word-spacing:-2.868480px;}
.wsd9{word-spacing:-2.862000px;}
.wsdb{word-spacing:-2.700000px;}
.ws73{word-spacing:-2.629440px;}
.ws5f{word-spacing:-2.569680px;}
.ws86{word-spacing:-2.509920px;}
.ws144{word-spacing:-2.160000px;}
.ws5a{word-spacing:-2.151360px;}
.ws2a{word-spacing:-2.106000px;}
.ws29{word-spacing:-2.052000px;}
.ws159{word-spacing:-1.944000px;}
.wsb3{word-spacing:-1.852560px;}
.ws11c{word-spacing:-1.782000px;}
.ws88{word-spacing:-1.733040px;}
.ws11d{word-spacing:-1.620000px;}
.ws106{word-spacing:-1.512000px;}
.ws42{word-spacing:-1.434240px;}
.ws13c{word-spacing:-1.404000px;}
.ws11e{word-spacing:-1.350000px;}
.ws12d{word-spacing:-1.242000px;}
.ws9c{word-spacing:-1.195200px;}
.ws82{word-spacing:-1.135440px;}
.ws158{word-spacing:-1.026000px;}
.ws47{word-spacing:-1.015920px;}
.wsd7{word-spacing:-0.918000px;}
.ws1f{word-spacing:-0.810000px;}
.ws9f{word-spacing:-0.752338px;}
.ws43{word-spacing:-0.717120px;}
.ws104{word-spacing:-0.702000px;}
.wsfc{word-spacing:-0.648000px;}
.wsa9{word-spacing:-0.639461px;}
.ws48{word-spacing:-0.597600px;}
.wsa6{word-spacing:-0.594000px;}
.ws105{word-spacing:-0.540000px;}
.wsb4{word-spacing:-0.478080px;}
.ws8c{word-spacing:-0.459187px;}
.ws9e{word-spacing:-0.429907px;}
.ws46{word-spacing:-0.418320px;}
.wsba{word-spacing:-0.378000px;}
.wsd6{word-spacing:-0.324000px;}
.ws97{word-spacing:-0.298800px;}
.ws11b{word-spacing:-0.270000px;}
.ws9d{word-spacing:-0.268692px;}
.ws23{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.192960px;}
.ws1c{word-spacing:-0.179280px;}
.ws20{word-spacing:-0.162000px;}
.ws8d{word-spacing:-0.114797px;}
.ws1d{word-spacing:-0.108000px;}
.wsa0{word-spacing:-0.107477px;}
.wsaa{word-spacing:-0.106577px;}
.ws79{word-spacing:-0.092668px;}
.ws1b{word-spacing:-0.059760px;}
.ws21{word-spacing:-0.054000px;}
.ws92{word-spacing:-0.048559px;}
.wsa7{word-spacing:-0.048152px;}
.ws11{word-spacing:0.000000px;}
.ws1e{word-spacing:0.054000px;}
.ws64{word-spacing:0.059760px;}
.wsa5{word-spacing:0.108000px;}
.ws76{word-spacing:0.119520px;}
.ws24{word-spacing:0.162000px;}
.ws1a{word-spacing:0.168480px;}
.ws3f{word-spacing:0.170640px;}
.ws22{word-spacing:0.179280px;}
.ws15{word-spacing:0.192960px;}
.ws90{word-spacing:0.207466px;}
.wsab{word-spacing:0.213154px;}
.wsa1{word-spacing:0.214954px;}
.ws35{word-spacing:0.216000px;}
.ws80{word-spacing:0.239040px;}
.wscc{word-spacing:0.270000px;}
.ws44{word-spacing:0.298800px;}
.ws17{word-spacing:0.324000px;}
.ws60{word-spacing:0.358560px;}
.wsce{word-spacing:0.378000px;}
.ws12{word-spacing:0.385920px;}
.ws8e{word-spacing:0.401789px;}
.ws8f{word-spacing:0.414931px;}
.ws5d{word-spacing:0.418320px;}
.ws95{word-spacing:0.478080px;}
.wsf2{word-spacing:0.486000px;}
.ws74{word-spacing:0.537840px;}
.wsc2{word-spacing:0.540000px;}
.ws2d{word-spacing:0.594000px;}
.ws14d{word-spacing:0.648000px;}
.wsb7{word-spacing:0.657360px;}
.wscd{word-spacing:0.702000px;}
.ws45{word-spacing:0.717120px;}
.ws14{word-spacing:0.723600px;}
.ws31{word-spacing:0.756000px;}
.ws3a{word-spacing:0.810000px;}
.ws30{word-spacing:0.864000px;}
.ws6c{word-spacing:0.956160px;}
.ws6f{word-spacing:1.015920px;}
.ws14e{word-spacing:1.026000px;}
.wsef{word-spacing:1.080000px;}
.wse9{word-spacing:1.134000px;}
.ws96{word-spacing:1.135440px;}
.wsa8{word-spacing:1.254960px;}
.ws10c{word-spacing:1.296000px;}
.wscb{word-spacing:1.350000px;}
.ws57{word-spacing:1.374480px;}
.ws4c{word-spacing:1.434240px;}
.ws2c{word-spacing:1.458000px;}
.ws33{word-spacing:1.512000px;}
.ws4b{word-spacing:1.673280px;}
.ws6e{word-spacing:1.733040px;}
.ws12a{word-spacing:2.052000px;}
.ws51{word-spacing:2.151360px;}
.ws2f{word-spacing:2.160000px;}
.ws2b{word-spacing:2.214000px;}
.ws36{word-spacing:2.268000px;}
.wsd3{word-spacing:2.430000px;}
.ws94{word-spacing:2.450160px;}
.ws131{word-spacing:2.538000px;}
.wsb0{word-spacing:2.569680px;}
.ws157{word-spacing:2.646000px;}
.ws4f{word-spacing:2.689200px;}
.ws39{word-spacing:2.808000px;}
.ws4e{word-spacing:2.868480px;}
.ws13d{word-spacing:2.916000px;}
.wse3{word-spacing:2.970000px;}
.ws2e{word-spacing:3.024000px;}
.ws6b{word-spacing:3.167280px;}
.wse2{word-spacing:3.240000px;}
.ws50{word-spacing:3.406320px;}
.ws107{word-spacing:3.510000px;}
.ws55{word-spacing:3.585600px;}
.ws116{word-spacing:3.618000px;}
.ws8b{word-spacing:3.824640px;}
.ws58{word-spacing:3.884400px;}
.ws149{word-spacing:3.888000px;}
.ws12e{word-spacing:3.942000px;}
.wsfb{word-spacing:3.996000px;}
.wsf9{word-spacing:4.104000px;}
.wsfa{word-spacing:4.212000px;}
.ws52{word-spacing:4.302720px;}
.wsbf{word-spacing:4.320000px;}
.ws13a{word-spacing:4.374000px;}
.wscf{word-spacing:4.428000px;}
.ws61{word-spacing:4.541760px;}
.ws63{word-spacing:4.601520px;}
.ws13b{word-spacing:4.698000px;}
.wsb5{word-spacing:4.721040px;}
.ws18{word-spacing:4.885920px;}
.ws3c{word-spacing:4.968000px;}
.ws53{word-spacing:5.019840px;}
.ws12f{word-spacing:5.076000px;}
.ws3b{word-spacing:5.130000px;}
.ws19{word-spacing:5.222880px;}
.ws40{word-spacing:5.258880px;}
.ws59{word-spacing:5.318640px;}
.ws130{word-spacing:5.346000px;}
.ws28{word-spacing:5.438160px;}
.wse8{word-spacing:5.562000px;}
.ws98{word-spacing:5.736960px;}
.wse4{word-spacing:5.778000px;}
.wse5{word-spacing:5.832000px;}
.ws10b{word-spacing:5.886000px;}
.ws143{word-spacing:6.156000px;}
.ws12b{word-spacing:6.372000px;}
.ws69{word-spacing:6.454080px;}
.wse6{word-spacing:6.480000px;}
.ws85{word-spacing:6.812640px;}
.wse7{word-spacing:6.858000px;}
.ws68{word-spacing:6.872400px;}
.ws100{word-spacing:7.020000px;}
.ws83{word-spacing:7.051680px;}
.ws26{word-spacing:7.230960px;}
.wse1{word-spacing:7.236000px;}
.ws84{word-spacing:7.470000px;}
.ws54{word-spacing:7.529760px;}
.ws27{word-spacing:7.649280px;}
.wsdd{word-spacing:7.938000px;}
.wseb{word-spacing:7.992000px;}
.ws75{word-spacing:8.187120px;}
.ws89{word-spacing:8.246880px;}
.wsea{word-spacing:8.262000px;}
.ws6d{word-spacing:8.665200px;}
.ws66{word-spacing:8.964000px;}
.ws127{word-spacing:9.288000px;}
.ws5b{word-spacing:9.382320px;}
.wsd5{word-spacing:9.396000px;}
.ws128{word-spacing:9.450000px;}
.ws129{word-spacing:9.666000px;}
.ws9a{word-spacing:9.681120px;}
.ws5c{word-spacing:9.800640px;}
.wsc5{word-spacing:9.882000px;}
.ws138{word-spacing:9.990000px;}
.ws126{word-spacing:10.044000px;}
.wsc4{word-spacing:10.098000px;}
.ws67{word-spacing:10.099440px;}
.wsc6{word-spacing:10.152000px;}
.ws125{word-spacing:10.260000px;}
.ws137{word-spacing:10.584000px;}
.ws9b{word-spacing:10.637280px;}
.wsd0{word-spacing:10.692000px;}
.wsd1{word-spacing:10.800000px;}
.ws81{word-spacing:10.816560px;}
.ws139{word-spacing:11.070000px;}
.wsd2{word-spacing:11.178000px;}
.ws70{word-spacing:11.234880px;}
.ws136{word-spacing:11.340000px;}
.ws4a{word-spacing:11.533680px;}
.ws49{word-spacing:11.952000px;}
.wsb6{word-spacing:12.250800px;}
.ws132{word-spacing:12.366000px;}
.wsa4{word-spacing:12.489840px;}
.ws87{word-spacing:12.549600px;}
.ws56{word-spacing:12.967920px;}
.ws117{word-spacing:13.068000px;}
.ws32{word-spacing:13.608000px;}
.ws25{word-spacing:13.685040px;}
.ws37{word-spacing:13.716000px;}
.ws11a{word-spacing:13.770000px;}
.ws38{word-spacing:14.202000px;}
.ws34{word-spacing:14.472000px;}
.ws6a{word-spacing:15.119280px;}
.ws8a{word-spacing:15.836400px;}
.ws16{word-spacing:16.200000px;}
.ws99{word-spacing:16.553520px;}
.wsf0{word-spacing:16.578000px;}
.wsf1{word-spacing:16.686000px;}
.ws65{word-spacing:16.971840px;}
.wsdc{word-spacing:17.928000px;}
.wsbe{word-spacing:18.522000px;}
.wsaf{word-spacing:18.704880px;}
.wsbc{word-spacing:18.738000px;}
.wsbd{word-spacing:19.116000px;}
.ws71{word-spacing:19.422000px;}
.ws62{word-spacing:20.139120px;}
.wsb1{word-spacing:21.931920px;}
.ws108{word-spacing:22.248000px;}
.wsb2{word-spacing:22.350240px;}
.ws10a{word-spacing:22.518000px;}
.ws109{word-spacing:22.734000px;}
.ws152{word-spacing:23.544000px;}
.ws153{word-spacing:23.652000px;}
.ws151{word-spacing:23.760000px;}
.ws150{word-spacing:23.868000px;}
.wsbb{word-spacing:24.300000px;}
.wsb8{word-spacing:25.110000px;}
.wsb9{word-spacing:25.596000px;}
.ws115{word-spacing:27.162000px;}
.ws113{word-spacing:28.080000px;}
.ws114{word-spacing:28.458000px;}
.ws121{word-spacing:31.482000px;}
.ws11f{word-spacing:32.454000px;}
.ws120{word-spacing:32.778000px;}
.ws141{word-spacing:38.016000px;}
.ws13f{word-spacing:38.232000px;}
.ws140{word-spacing:38.448000px;}
.ws148{word-spacing:38.664000px;}
.ws142{word-spacing:38.718000px;}
.ws145{word-spacing:39.528000px;}
.ws146{word-spacing:39.636000px;}
.ws147{word-spacing:40.014000px;}
.ws15c{word-spacing:63.558000px;}
.ws15a{word-spacing:64.098000px;}
.ws15b{word-spacing:64.368000px;}
.ws15e{word-spacing:65.718000px;}
.ws15d{word-spacing:65.934000px;}
.ws135{word-spacing:75.060000px;}
.ws134{word-spacing:75.168000px;}
.ws133{word-spacing:75.600000px;}
.ws122{word-spacing:76.680000px;}
.ws123{word-spacing:76.734000px;}
.ws124{word-spacing:77.058000px;}
.wse0{word-spacing:81.540000px;}
.ws12c{word-spacing:81.756000px;}
.wsde{word-spacing:81.972000px;}
.wsdf{word-spacing:82.458000px;}
.ws10d{word-spacing:83.430000px;}
.ws10e{word-spacing:83.808000px;}
.ws10f{word-spacing:84.078000px;}
.wsee{word-spacing:84.780000px;}
.wsed{word-spacing:85.374000px;}
.wsec{word-spacing:85.860000px;}
.wsf4{word-spacing:88.236000px;}
.wsf5{word-spacing:88.344000px;}
.wsf3{word-spacing:88.560000px;}
.wsfe{word-spacing:92.556000px;}
.wsfd{word-spacing:92.772000px;}
.wsff{word-spacing:93.042000px;}
.ws14c{word-spacing:104.220000px;}
.ws14a{word-spacing:105.192000px;}
.ws14b{word-spacing:105.516000px;}
.ws155{word-spacing:108.810000px;}
.ws154{word-spacing:109.350000px;}
.ws156{word-spacing:110.322000px;}
.ws14f{word-spacing:113.130000px;}
.ws101{word-spacing:128.790000px;}
.ws103{word-spacing:128.898000px;}
.ws102{word-spacing:129.276000px;}
.ws112{word-spacing:133.002000px;}
.ws118{word-spacing:133.974000px;}
.ws110{word-spacing:134.028000px;}
.ws111{word-spacing:134.298000px;}
.ws119{word-spacing:134.460000px;}
.wsc3{word-spacing:139.158000px;}
.wsc0{word-spacing:139.212000px;}
.wsc1{word-spacing:139.374000px;}
.wsd4{word-spacing:199.746000px;}
._7{margin-left:-3.517488px;}
._2{margin-left:-2.484000px;}
._1{margin-left:-1.167408px;}
._0{width:1.307304px;}
._3{width:2.850696px;}
._4{width:5.334408px;}
._8{width:6.693120px;}
._5{width:11.122776px;}
._a{width:19.120536px;}
._9{width:24.929928px;}
._10{width:40.048416px;}
._13{width:64.261512px;}
._14{width:66.622176px;}
._f{width:76.234176px;}
._c{width:85.224528px;}
._d{width:88.519824px;}
._11{width:105.919128px;}
._12{width:109.745856px;}
._6{width:122.618188px;}
._e{width:134.438904px;}
._b{width:139.078872px;}
.fc8{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc7{color:rgb(79,129,189);}
.fc2{color:rgb(36,64,97);}
.fc1{color:rgb(1,20,99);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.120000px;}
.fs6{font-size:36.000000px;}
.fs9{font-size:46.333800px;}
.fse{font-size:48.152400px;}
.fs1{font-size:48.240000px;}
.fsc{font-size:48.559200px;}
.fsb{font-size:51.866400px;}
.fsf{font-size:53.288400px;}
.fsd{font-size:53.738400px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fsa{font-size:57.398400px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y31{bottom:-21.060000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:17.008200px;}
.ybc{bottom:22.674450px;}
.yc4{bottom:22.945800px;}
.y10d{bottom:36.612150px;}
.y111{bottom:36.881400px;}
.ybd{bottom:46.785150px;}
.yc5{bottom:47.056650px;}
.y98{bottom:55.826700px;}
.y8d{bottom:56.041050px;}
.y2{bottom:56.880000px;}
.ybe{bottom:70.896150px;}
.yc6{bottom:71.167500px;}
.y99{bottom:78.305250px;}
.y8e{bottom:78.519600px;}
.y10e{bottom:88.777050px;}
.y112{bottom:89.046150px;}
.ybf{bottom:95.007000px;}
.yc7{bottom:95.278350px;}
.y9a{bottom:100.783950px;}
.y8f{bottom:100.998150px;}
.yba{bottom:111.527100px;}
.y10b{bottom:111.600000px;}
.y8b{bottom:115.380000px;}
.y25{bottom:118.450440px;}
.yc0{bottom:119.117850px;}
.yc8{bottom:119.389350px;}
.y9b{bottom:123.262500px;}
.y90{bottom:123.476700px;}
.y10a{bottom:127.112400px;}
.ye1{bottom:128.154600px;}
.y6f{bottom:129.192120px;}
.y19b{bottom:130.509000px;}
.yb9{bottom:131.681160px;}
.y8a{bottom:137.140200px;}
.y8c{bottom:137.802000px;}
.y24{bottom:138.604500px;}
.y10f{bottom:140.941800px;}
.y113{bottom:141.210900px;}
.yc1{bottom:143.228550px;}
.yc9{bottom:143.500200px;}
.y1d0{bottom:145.426500px;}
.y9c{bottom:145.740900px;}
.y91{bottom:145.955400px;}
.y1b5{bottom:146.857500px;}
.y19a{bottom:148.869000px;}
.y6e{bottom:149.346180px;}
.yb8{bottom:152.014500px;}
.ye0{bottom:153.537660px;}
.y115{bottom:154.863450px;}
.y11d{bottom:155.433450px;}
.y14e{bottom:156.964500px;}
.y23{bottom:158.937840px;}
.y175{bottom:159.844500px;}
.y1cf{bottom:163.611000px;}
.y1b4{bottom:166.473000px;}
.yc2{bottom:167.339400px;}
.yca{bottom:167.610900px;}
.y9d{bottom:168.219600px;}
.y92{bottom:168.433800px;}
.y6d{bottom:169.679520px;}
.yb7{bottom:172.168560px;}
.y14d{bottom:176.580000px;}
.ydf{bottom:179.100000px;}
.y174{bottom:179.460000px;}
.y199{bottom:180.364500px;}
.y1ce{bottom:181.795500px;}
.y116{bottom:186.460650px;}
.y11e{bottom:187.023450px;}
.y22{bottom:188.280000px;}
.y6c{bottom:189.833580px;}
.y9e{bottom:190.698300px;}
.y93{bottom:190.912350px;}
.yc3{bottom:191.450400px;}
.ycb{bottom:191.721750px;}
.yb6{bottom:192.501900px;}
.y110{bottom:193.106700px;}
.y114{bottom:193.375800px;}
.y1b3{bottom:198.157500px;}
.y198{bottom:200.169000px;}
.yde{bottom:204.300000px;}
.y14c{bottom:208.264500px;}
.y6b{bottom:210.166920px;}
.y173{bottom:211.144500px;}
.y1cd{bottom:212.035500px;}
.yb5{bottom:212.655960px;}
.y9f{bottom:213.176700px;}
.y94{bottom:213.391050px;}
.y1b2{bottom:217.773000px;}
.y117{bottom:218.057850px;}
.y11f{bottom:218.613450px;}
.ydd{bottom:225.791100px;}
.y21{bottom:226.260000px;}
.y14b{bottom:228.069000px;}
.y1cc{bottom:230.220000px;}
.y6a{bottom:230.320980px;}
.y172{bottom:230.760000px;}
.y197{bottom:231.664500px;}
.yb4{bottom:232.989300px;}
.ya0{bottom:235.655250px;}
.y95{bottom:235.869450px;}
.y14a{bottom:247.684500px;}
.y1b1{bottom:248.013000px;}
.y1cb{bottom:248.580000px;}
.y118{bottom:249.655050px;}
.y120{bottom:250.203450px;}
.y69{bottom:250.475040px;}
.y20{bottom:251.464500px;}
.y196{bottom:251.469000px;}
.yb3{bottom:253.143360px;}
.yee{bottom:254.360250px;}
.yf4{bottom:255.548250px;}
.ya1{bottom:258.133950px;}
.y96{bottom:258.348150px;}
.y171{bottom:262.444500px;}
.y1b0{bottom:266.197500px;}
.y68{bottom:270.808380px;}
.y1f{bottom:271.080000px;}
.yb2{bottom:273.297420px;}
.y149{bottom:279.369000px;}
.y1ca{bottom:280.075500px;}
.ya2{bottom:280.612500px;}
.y97{bottom:280.826700px;}
.y119{bottom:281.252250px;}
.y195{bottom:281.709000px;}
.y121{bottom:281.793450px;}
.y170{bottom:282.060000px;}
.y1af{bottom:284.382000px;}
.yef{bottom:288.798750px;}
.yf5{bottom:289.986750px;}
.y1e{bottom:290.520000px;}
.y67{bottom:290.962440px;}
.y30{bottom:292.320000px;}
.yb1{bottom:293.630760px;}
.y2f{bottom:297.553500px;}
.y148{bottom:298.984500px;}
.y1c9{bottom:299.880000px;}
.y194{bottom:299.893500px;}
.y16f{bottom:301.675500px;}
.y1d{bottom:310.508280px;}
.y66{bottom:311.295780px;}
.y11a{bottom:312.849450px;}
.y122{bottom:313.383450px;}
.y1ae{bottom:314.622000px;}
.y2e{bottom:317.169000px;}
.y193{bottom:318.078000px;}
.y1c8{bottom:319.495500px;}
.yb0{bottom:322.793640px;}
.yf0{bottom:323.237250px;}
.yf6{bottom:324.425250px;}
.y147{bottom:330.669000px;}
.y65{bottom:331.449840px;}
.y1ad{bottom:332.806500px;}
.y16e{bottom:333.360000px;}
.y2d{bottom:336.609000px;}
.y1c{bottom:339.850440px;}
.y11b{bottom:344.446650px;}
.y123{bottom:344.973450px;}
.y192{bottom:349.762500px;}
.y146{bottom:350.284500px;}
.y1c7{bottom:351.180000px;}
.y64{bottom:351.783180px;}
.y16d{bottom:352.975500px;}
.y2c{bottom:356.049000px;}
.yf1{bottom:357.675750px;}
.yf7{bottom:358.863750px;}
.yaf{bottom:361.129680px;}
.y1ac{bottom:364.491000px;}
.y191{bottom:369.378000px;}
.y145{bottom:369.900000px;}
.y1c6{bottom:370.795500px;}
.y63{bottom:371.937240px;}
.y2b{bottom:375.664500px;}
.y11c{bottom:376.043850px;}
.y124{bottom:376.563450px;}
.y1b{bottom:378.007200px;}
.yae{bottom:381.283740px;}
.y1ab{bottom:384.295500px;}
.y16c{bottom:384.660000px;}
.y190{bottom:388.993500px;}
.y62{bottom:392.091300px;}
.yf2{bottom:392.114250px;}
.yf8{bottom:393.302250px;}
.y2a{bottom:395.104500px;}
.yad{bottom:401.617080px;}
.y1c5{bottom:402.480000px;}
.y16b{bottom:404.275500px;}
.y144{bottom:407.897820px;}
.y61{bottom:412.424640px;}
.y29{bottom:414.544500px;}
.y1aa{bottom:415.791000px;}
.y1a{bottom:416.343240px;}
.y109{bottom:417.277080px;}
.y18f{bottom:420.678000px;}
.yac{bottom:421.771140px;}
.y1c4{bottom:422.095500px;}
.yf3{bottom:426.552750px;}
.yf9{bottom:427.740750px;}
.y60{bottom:432.578700px;}
.y28{bottom:434.160000px;}
.y1a9{bottom:435.595500px;}
.y16a{bottom:435.960000px;}
.y108{bottom:437.610420px;}
.y18e{bottom:440.293500px;}
.y1c3{bottom:441.711000px;}
.yab{bottom:441.925200px;}
.y143{bottom:446.054580px;}
.y5f{bottom:452.912040px;}
.y27{bottom:453.600000px;}
.y89{bottom:454.301460px;}
.y19{bottom:454.500000px;}
.y107{bottom:457.764480px;}
.y18d{bottom:459.909000px;}
.yaa{bottom:462.258540px;}
.y142{bottom:466.387920px;}
.y1a8{bottom:467.091000px;}
.y169{bottom:467.644500px;}
.ydc{bottom:469.865880px;}
.y26{bottom:473.040000px;}
.y5e{bottom:473.066100px;}
.y1c2{bottom:473.395500px;}
.y106{bottom:477.918540px;}
.y88{bottom:479.684520px;}
.ya9{bottom:482.412600px;}
.y141{bottom:486.541980px;}
.y1a7{bottom:486.895500px;}
.y168{bottom:487.260000px;}
.y18c{bottom:491.593500px;}
.y18{bottom:492.480000px;}
.y1c1{bottom:493.011000px;}
.y5d{bottom:493.399440px;}
.ydb{bottom:495.428220px;}
.y105{bottom:498.251880px;}
.y87{bottom:500.017860px;}
.ya8{bottom:502.745940px;}
.y1a6{bottom:506.511000px;}
.y140{bottom:506.696040px;}
.y18b{bottom:511.209000px;}
.y5c{bottom:513.553500px;}
.yda{bottom:515.582280px;}
.y17{bottom:517.680000px;}
.y104{bottom:518.405940px;}
.y167{bottom:518.944500px;}
.y86{bottom:520.171920px;}
.ya7{bottom:522.900000px;}
.y1c0{bottom:524.695500px;}
.y13f{bottom:527.029380px;}
.y18a{bottom:531.013500px;}
.y5b{bottom:533.707560px;}
.yd9{bottom:535.736340px;}
.y16{bottom:537.684300px;}
.y1a5{bottom:538.195500px;}
.y103{bottom:538.560000px;}
.y85{bottom:540.505260px;}
.ya6{bottom:542.700000px;}
.y13e{bottom:547.183440px;}
.y5a{bottom:554.040900px;}
.yd8{bottom:556.069680px;}
.y1bf{bottom:556.380000px;}
.y1a4{bottom:557.811000px;}
.y15{bottom:558.017640px;}
.y102{bottom:558.360000px;}
.y84{bottom:560.659320px;}
.y189{bottom:562.698000px;}
.ya5{bottom:564.394320px;}
.ybb{bottom:564.442500px;}
.y3a{bottom:566.833500px;}
.y13d{bottom:567.516780px;}
.y166{bottom:570.244500px;}
.y59{bottom:574.194960px;}
.y1be{bottom:575.995500px;}
.yd7{bottom:576.223740px;}
.y101{bottom:580.036500px;}
.y10c{bottom:580.446000px;}
.y83{bottom:580.813380px;}
.y188{bottom:582.313500px;}
.y39{bottom:586.449000px;}
.y13c{bottom:587.670840px;}
.y1a3{bottom:588.051000px;}
.y165{bottom:589.860000px;}
.y58{bottom:594.528300px;}
.y1bd{bottom:595.611000px;}
.y14{bottom:596.174400px;}
.yd6{bottom:596.557080px;}
.y38{bottom:605.889000px;}
.y1a2{bottom:606.235500px;}
.y13b{bottom:607.824900px;}
.y164{bottom:609.475500px;}
.y82{bottom:610.155540px;}
.y187{bottom:613.998000px;}
.y57{bottom:614.682360px;}
.yd5{bottom:616.711140px;}
.y37{bottom:625.329000px;}
.y1bc{bottom:625.851000px;}
.y13a{bottom:628.158240px;}
.y186{bottom:633.613500px;}
.y13{bottom:634.510440px;}
.y56{bottom:634.836420px;}
.yd4{bottom:637.044480px;}
.y1a1{bottom:637.920000px;}
.y163{bottom:641.160000px;}
.y1bb{bottom:644.035500px;}
.y36{bottom:644.944500px;}
.y139{bottom:648.312300px;}
.y81{bottom:648.491580px;}
.y185{bottom:653.229000px;}
.y55{bottom:655.169760px;}
.yd3{bottom:657.198540px;}
.y1a0{bottom:657.535500px;}
.y162{bottom:660.775500px;}
.y35{bottom:664.384500px;}
.y138{bottom:668.645640px;}
.y12{bottom:672.667200px;}
.y54{bottom:675.323820px;}
.y1ba{bottom:675.720000px;}
.yd2{bottom:677.352600px;}
.y161{bottom:680.580000px;}
.y34{bottom:683.824500px;}
.y184{bottom:684.913500px;}
.y80{bottom:686.648340px;}
.y137{bottom:688.799700px;}
.y19f{bottom:689.220000px;}
.y53{bottom:695.657160px;}
.yd1{bottom:697.685940px;}
.y33{bottom:703.440000px;}
.y183{bottom:704.529000px;}
.y1b9{bottom:705.960000px;}
.y7f{bottom:706.802400px;}
.y19e{bottom:708.835500px;}
.y136{bottom:709.133040px;}
.y11{bottom:711.003240px;}
.y160{bottom:712.264500px;}
.y52{bottom:715.811220px;}
.yd0{bottom:717.840000px;}
.y32{bottom:722.880000px;}
.y1b8{bottom:724.144500px;}
.y7e{bottom:727.135740px;}
.y135{bottom:729.287100px;}
.y15f{bottom:731.880000px;}
.y51{bottom:736.144560px;}
.y182{bottom:736.213500px;}
.ycf{bottom:739.075500px;}
.y7d{bottom:747.289800px;}
.y10{bottom:749.160000px;}
.y134{bottom:749.441160px;}
.y181{bottom:755.829000px;}
.y50{bottom:756.298620px;}
.y19d{bottom:757.260000px;}
.yce{bottom:758.880000px;}
.y15e{bottom:763.564500px;}
.y7c{bottom:767.443860px;}
.y133{bottom:769.774500px;}
.y1d5{bottom:774.715500px;}
.y19c{bottom:775.444500px;}
.y4f{bottom:776.452680px;}
.y15d{bottom:783.180000px;}
.yf{bottom:786.780000px;}
.y180{bottom:787.513500px;}
.y7b{bottom:787.777200px;}
.y132{bottom:789.928560px;}
.ya4{bottom:791.557020px;}
.y1d4{bottom:792.900000px;}
.y4e{bottom:796.786020px;}
.ye2{bottom:802.469250px;}
.ye8{bottom:803.657250px;}
.ye{bottom:804.960000px;}
.y1d3{bottom:807.120000px;}
.y17f{bottom:807.129000px;}
.y7a{bottom:807.931260px;}
.y131{bottom:810.261900px;}
.y15c{bottom:814.864500px;}
.y4d{bottom:816.940080px;}
.y100{bottom:823.035600px;}
.y17e{bottom:826.744500px;}
.yd{bottom:827.100000px;}
.y79{bottom:828.264600px;}
.y130{bottom:830.415960px;}
.ye3{bottom:834.396750px;}
.ye9{bottom:835.584750px;}
.y4c{bottom:837.273420px;}
.y15b{bottom:846.549000px;}
.y78{bottom:848.418660px;}
.y12f{bottom:850.749300px;}
.yc{bottom:851.045940px;}
.y4b{bottom:857.427480px;}
.y17d{bottom:858.429000px;}
.y15a{bottom:866.164500px;}
.ye4{bottom:866.324250px;}
.yea{bottom:867.512250px;}
.y77{bottom:868.752000px;}
.y12e{bottom:870.903360px;}
.yb{bottom:871.200000px;}
.y4a{bottom:877.760820px;}
.y17c{bottom:878.044500px;}
.y1d2{bottom:878.584500px;}
.y76{bottom:888.906060px;}
.ya{bottom:891.000000px;}
.y12d{bottom:891.057420px;}
.y159{bottom:897.849000px;}
.y49{bottom:897.914880px;}
.ye5{bottom:898.251750px;}
.yeb{bottom:899.439750px;}
.y75{bottom:909.060120px;}
.y17b{bottom:909.729000px;}
.y12c{bottom:911.390760px;}
.y1d1{bottom:916.209000px;}
.y158{bottom:917.464500px;}
.y48{bottom:918.068940px;}
.y9{bottom:920.517480px;}
.y17a{bottom:929.344500px;}
.y74{bottom:929.393460px;}
.ye6{bottom:930.179250px;}
.yec{bottom:931.367250px;}
.y12b{bottom:931.544820px;}
.y47{bottom:938.402280px;}
.y8{bottom:948.780000px;}
.y157{bottom:949.149000px;}
.y73{bottom:949.547520px;}
.y12a{bottom:951.878160px;}
.y46{bottom:958.556340px;}
.ye7{bottom:962.106750px;}
.yed{bottom:963.294750px;}
.y156{bottom:968.764500px;}
.y72{bottom:969.880860px;}
.y129{bottom:972.032220px;}
.y45{bottom:978.889680px;}
.y179{bottom:980.644500px;}
.y155{bottom:988.380000px;}
.y71{bottom:990.034920px;}
.y128{bottom:992.365560px;}
.y7{bottom:997.011000px;}
.y44{bottom:999.043740px;}
.y178{bottom:1000.449000px;}
.yff{bottom:1010.368260px;}
.y127{bottom:1012.519620px;}
.ycd{bottom:1017.748620px;}
.y43{bottom:1019.377080px;}
.y70{bottom:1019.556360px;}
.y154{bottom:1020.064500px;}
.yfe{bottom:1030.522320px;}
.y1b7{bottom:1032.133500px;}
.y126{bottom:1032.673680px;}
.y6{bottom:1033.380000px;}
.y42{bottom:1039.531140px;}
.y153{bottom:1039.680000px;}
.ycc{bottom:1039.710420px;}
.yfd{bottom:1050.676380px;}
.y177{bottom:1051.749000px;}
.y152{bottom:1059.295500px;}
.y41{bottom:1059.685200px;}
.y125{bottom:1062.195120px;}
.y5{bottom:1066.140000px;}
.yfc{bottom:1071.009720px;}
.y176{bottom:1071.364500px;}
.y40{bottom:1080.018540px;}
.y151{bottom:1090.980000px;}
.yfb{bottom:1091.163780px;}
.y3f{bottom:1100.172600px;}
.y1b6{bottom:1103.049000px;}
.y4{bottom:1103.580000px;}
.yfa{bottom:1111.497120px;}
.y1{bottom:1117.980000px;}
.y3e{bottom:1120.505940px;}
.y150{bottom:1122.664500px;}
.y3d{bottom:1140.660000px;}
.y14f{bottom:1142.280000px;}
.y3{bottom:1153.620000px;}
.y3c{bottom:1164.420000px;}
.y3b{bottom:1197.180000px;}
.h10{height:30.881659px;}
.h17{height:32.093763px;}
.h14{height:32.364896px;}
.h9{height:33.105586px;}
.h12{height:35.506198px;}
.hd{height:35.991211px;}
.h18{height:36.479657px;}
.h15{height:36.787713px;}
.h11{height:39.293241px;}
.h4{height:43.010859px;}
.h19{height:43.081523px;}
.h3{height:44.871680px;}
.h2{height:47.988281px;}
.h7{height:48.225586px;}
.h1a{height:48.243586px;}
.ha{height:50.229492px;}
.he{height:50.797617px;}
.hb{height:53.369648px;}
.h8{height:55.587305px;}
.h6{height:78.358008px;}
.h5{height:100.458984px;}
.hc{height:214.200000px;}
.h13{height:222.399000px;}
.h16{height:237.871500px;}
.hf{height:311.715000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:654.840000px;}
.w5{width:687.558000px;}
.w4{width:693.213000px;}
.w3{width:740.118000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:9.417900px;}
.x9{left:10.800000px;}
.x53{left:19.557900px;}
.x55{left:42.848850px;}
.x54{left:44.681550px;}
.x24{left:53.915100px;}
.x27{left:70.684500px;}
.x22{left:72.433950px;}
.x29{left:75.803850px;}
.x23{left:77.027850px;}
.x28{left:80.073450px;}
.x2a{left:89.426550px;}
.x2e{left:95.787000px;}
.x38{left:96.909450px;}
.x25{left:100.738050px;}
.x39{left:101.947050px;}
.x8{left:113.040000px;}
.xf{left:117.097500px;}
.x7{left:123.840000px;}
.x2{left:127.620000px;}
.x4e{left:130.324140px;}
.x36{left:132.125850px;}
.x35{left:134.587500px;}
.x4{left:136.080000px;}
.x5{left:138.240000px;}
.x4a{left:141.638700px;}
.x37{left:146.949000px;}
.x5e{left:151.513650px;}
.xa{left:154.620000px;}
.x60{left:155.833650px;}
.x3a{left:157.858560px;}
.x6{left:159.472080px;}
.x5f{left:174.558150px;}
.x19{left:176.595750px;}
.x4c{left:178.699860px;}
.xb{left:181.616580px;}
.x49{left:193.924200px;}
.x5d{left:199.344150px;}
.x4b{left:207.721200px;}
.x1a{left:210.862500px;}
.x2c{left:216.715140px;}
.x1b{left:228.237150px;}
.x10{left:231.450300px;}
.x44{left:232.843200px;}
.xc{left:234.563940px;}
.x11{left:240.137700px;}
.x61{left:244.620000px;}
.x2b{left:254.314350px;}
.x46{left:262.732200px;}
.x1c{left:271.191300px;}
.x45{left:296.158200px;}
.x1d{left:297.253200px;}
.x12{left:299.983950px;}
.x2f{left:301.416900px;}
.x4f{left:329.952420px;}
.x1e{left:348.894750px;}
.xe{left:357.840000px;}
.x51{left:373.680000px;}
.x15{left:377.687400px;}
.x43{left:388.322700px;}
.x30{left:392.912850px;}
.x1{left:395.280000px;}
.x3b{left:413.272800px;}
.x31{left:417.528450px;}
.x1f{left:426.115650px;}
.x3c{left:446.400000px;}
.x20{left:452.177700px;}
.x21{left:469.552350px;}
.x17{left:498.345000px;}
.x13{left:507.032400px;}
.x32{left:509.024400px;}
.x47{left:521.528700px;}
.x56{left:523.449450px;}
.x57{left:544.313250px;}
.x14{left:567.361200px;}
.x58{left:573.763770px;}
.x33{left:575.440200px;}
.x18{left:577.013700px;}
.x3e{left:582.412200px;}
.x59{left:611.499510px;}
.x5a{left:615.792870px;}
.x16{left:619.002450px;}
.x3f{left:628.150200px;}
.x40{left:634.576200px;}
.x52{left:653.338500px;}
.x34{left:658.111650px;}
.x5b{left:666.107190px;}
.x3{left:685.980000px;}
.x41{left:693.166200px;}
.x5c{left:704.156490px;}
.x48{left:706.519200px;}
.x42{left:712.822200px;}
.x50{left:749.527380px;}
.x4d{left:784.053720px;}
.x3d{left:786.795660px;}
.x2d{left:788.932080px;}
.xd{left:857.532060px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.439467pt;}
.ls4e{letter-spacing:-1.152000pt;}
.ls4a{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.849920pt;}
.ls46{letter-spacing:-0.816000pt;}
.ls16{letter-spacing:-0.672000pt;}
.ls17{letter-spacing:-0.624000pt;}
.ls44{letter-spacing:-0.584320pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls1c{letter-spacing:-0.528000pt;}
.ls47{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.471680pt;}
.ls4b{letter-spacing:-0.432000pt;}
.ls39{letter-spacing:-0.429907pt;}
.ls36{letter-spacing:-0.424960pt;}
.ls49{letter-spacing:-0.336000pt;}
.ls34{letter-spacing:-0.322724pt;}
.ls25{letter-spacing:-0.318720pt;}
.lse{letter-spacing:-0.300160pt;}
.ls13{letter-spacing:-0.299520pt;}
.ls1e{letter-spacing:-0.288000pt;}
.ls51{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.212480pt;}
.ls30{letter-spacing:-0.204083pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls38{letter-spacing:-0.191070pt;}
.lsc{letter-spacing:-0.171520pt;}
.ls27{letter-spacing:-0.159360pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls35{letter-spacing:-0.138310pt;}
.ls26{letter-spacing:-0.106240pt;}
.ls2f{letter-spacing:-0.102042pt;}
.ls48{letter-spacing:-0.096000pt;}
.ls23{letter-spacing:-0.053120pt;}
.ls2d{letter-spacing:-0.051021pt;}
.ls45{letter-spacing:-0.048000pt;}
.ls3a{letter-spacing:-0.047767pt;}
.ls40{letter-spacing:-0.047367pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.041186pt;}
.ls18{letter-spacing:0.048000pt;}
.ls32{letter-spacing:0.051021pt;}
.ls28{letter-spacing:0.063744pt;}
.ls15{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.102042pt;}
.ls5{letter-spacing:0.106240pt;}
.ls3e{letter-spacing:0.142102pt;}
.ls3c{letter-spacing:0.143302pt;}
.ls7{letter-spacing:0.144000pt;}
.ls33{letter-spacing:0.153062pt;}
.ls1{letter-spacing:0.159360pt;}
.ls3d{letter-spacing:0.169984pt;}
.lsf{letter-spacing:0.171520pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls42{letter-spacing:0.196544pt;}
.ls4{letter-spacing:0.212480pt;}
.ls6{letter-spacing:0.233728pt;}
.ls3f{letter-spacing:0.236837pt;}
.ls3b{letter-spacing:0.238837pt;}
.ls14{letter-spacing:0.240000pt;}
.ls21{letter-spacing:0.249664pt;}
.ls2e{letter-spacing:0.255104pt;}
.ls12{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.300160pt;}
.ls9{letter-spacing:0.318720pt;}
.ls8{letter-spacing:0.336000pt;}
.lsd{letter-spacing:0.343040pt;}
.ls37{letter-spacing:0.424960pt;}
.ls24{letter-spacing:0.531200pt;}
.ls29{letter-spacing:0.796800pt;}
.ls4f{letter-spacing:0.816000pt;}
.ls1f{letter-spacing:1.434240pt;}
.ls50{letter-spacing:2.064000pt;}
.ls41{letter-spacing:2.071680pt;}
.ls20{letter-spacing:2.709120pt;}
.ls22{letter-spacing:3.984000pt;}
.ls3{letter-spacing:4.537728pt;}
.ls4d{letter-spacing:5.904000pt;}
.lsa{letter-spacing:6.533760pt;}
.ls43{letter-spacing:8.496000pt;}
.ls2{letter-spacing:14.400000pt;}
.ls4c{letter-spacing:19.344000pt;}
.ls2b{letter-spacing:56.891520pt;}
.ws77{word-spacing:-53.120000pt;}
.ws5{word-spacing:-24.288000pt;}
.ws78{word-spacing:-13.811200pt;}
.ws6{word-spacing:-13.598720pt;}
.ws8{word-spacing:-13.492480pt;}
.wsa2{word-spacing:-13.439360pt;}
.wsac{word-spacing:-13.280000pt;}
.ws91{word-spacing:-13.226880pt;}
.ws3e{word-spacing:-13.120640pt;}
.ws4{word-spacing:-13.067520pt;}
.ws3d{word-spacing:-12.961280pt;}
.wsa{word-spacing:-12.336000pt;}
.wsf6{word-spacing:-12.240000pt;}
.wsc8{word-spacing:-12.144000pt;}
.ws10{word-spacing:-12.096000pt;}
.wsa3{word-spacing:-12.048000pt;}
.wsc{word-spacing:-12.000000pt;}
.wsc9{word-spacing:-11.952000pt;}
.wsca{word-spacing:-11.904000pt;}
.wse{word-spacing:-11.856000pt;}
.wsae{word-spacing:-11.808000pt;}
.ws13e{word-spacing:-11.760000pt;}
.wsf8{word-spacing:-11.712000pt;}
.ws7f{word-spacing:-11.683763pt;}
.wsc7{word-spacing:-11.664000pt;}
.ws7c{word-spacing:-11.632742pt;}
.ws7d{word-spacing:-11.581722pt;}
.ws7a{word-spacing:-11.479680pt;}
.wsf7{word-spacing:-11.472000pt;}
.ws7b{word-spacing:-11.428659pt;}
.wsf{word-spacing:-11.424000pt;}
.wsd{word-spacing:-11.376000pt;}
.wsb{word-spacing:-11.328000pt;}
.ws7e{word-spacing:-11.326618pt;}
.wsad{word-spacing:-11.184000pt;}
.ws0{word-spacing:-11.063040pt;}
.ws2{word-spacing:-10.720000pt;}
.ws93{word-spacing:-10.604378pt;}
.ws3{word-spacing:-10.548480pt;}
.ws1{word-spacing:-10.419840pt;}
.ws7{word-spacing:-8.000000pt;}
.ws9{word-spacing:-7.360000pt;}
.ws4d{word-spacing:-3.187200pt;}
.ws5e{word-spacing:-2.974720pt;}
.ws72{word-spacing:-2.921600pt;}
.wsda{word-spacing:-2.832000pt;}
.wsd8{word-spacing:-2.640000pt;}
.ws41{word-spacing:-2.549760pt;}
.wsd9{word-spacing:-2.544000pt;}
.wsdb{word-spacing:-2.400000pt;}
.ws73{word-spacing:-2.337280pt;}
.ws5f{word-spacing:-2.284160pt;}
.ws86{word-spacing:-2.231040pt;}
.ws144{word-spacing:-1.920000pt;}
.ws5a{word-spacing:-1.912320pt;}
.ws2a{word-spacing:-1.872000pt;}
.ws29{word-spacing:-1.824000pt;}
.ws159{word-spacing:-1.728000pt;}
.wsb3{word-spacing:-1.646720pt;}
.ws11c{word-spacing:-1.584000pt;}
.ws88{word-spacing:-1.540480pt;}
.ws11d{word-spacing:-1.440000pt;}
.ws106{word-spacing:-1.344000pt;}
.ws42{word-spacing:-1.274880pt;}
.ws13c{word-spacing:-1.248000pt;}
.ws11e{word-spacing:-1.200000pt;}
.ws12d{word-spacing:-1.104000pt;}
.ws9c{word-spacing:-1.062400pt;}
.ws82{word-spacing:-1.009280pt;}
.ws158{word-spacing:-0.912000pt;}
.ws47{word-spacing:-0.903040pt;}
.wsd7{word-spacing:-0.816000pt;}
.ws1f{word-spacing:-0.720000pt;}
.ws9f{word-spacing:-0.668745pt;}
.ws43{word-spacing:-0.637440pt;}
.ws104{word-spacing:-0.624000pt;}
.wsfc{word-spacing:-0.576000pt;}
.wsa9{word-spacing:-0.568410pt;}
.ws48{word-spacing:-0.531200pt;}
.wsa6{word-spacing:-0.528000pt;}
.ws105{word-spacing:-0.480000pt;}
.wsb4{word-spacing:-0.424960pt;}
.ws8c{word-spacing:-0.408166pt;}
.ws9e{word-spacing:-0.382140pt;}
.ws46{word-spacing:-0.371840pt;}
.wsba{word-spacing:-0.336000pt;}
.wsd6{word-spacing:-0.288000pt;}
.ws97{word-spacing:-0.265600pt;}
.ws11b{word-spacing:-0.240000pt;}
.ws9d{word-spacing:-0.238837pt;}
.ws23{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.171520pt;}
.ws1c{word-spacing:-0.159360pt;}
.ws20{word-spacing:-0.144000pt;}
.ws8d{word-spacing:-0.102042pt;}
.ws1d{word-spacing:-0.096000pt;}
.wsa0{word-spacing:-0.095535pt;}
.wsaa{word-spacing:-0.094735pt;}
.ws79{word-spacing:-0.082371pt;}
.ws1b{word-spacing:-0.053120pt;}
.ws21{word-spacing:-0.048000pt;}
.ws92{word-spacing:-0.043164pt;}
.wsa7{word-spacing:-0.042802pt;}
.ws11{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.048000pt;}
.ws64{word-spacing:0.053120pt;}
.wsa5{word-spacing:0.096000pt;}
.ws76{word-spacing:0.106240pt;}
.ws24{word-spacing:0.144000pt;}
.ws1a{word-spacing:0.149760pt;}
.ws3f{word-spacing:0.151680pt;}
.ws22{word-spacing:0.159360pt;}
.ws15{word-spacing:0.171520pt;}
.ws90{word-spacing:0.184414pt;}
.wsab{word-spacing:0.189470pt;}
.wsa1{word-spacing:0.191070pt;}
.ws35{word-spacing:0.192000pt;}
.ws80{word-spacing:0.212480pt;}
.wscc{word-spacing:0.240000pt;}
.ws44{word-spacing:0.265600pt;}
.ws17{word-spacing:0.288000pt;}
.ws60{word-spacing:0.318720pt;}
.wsce{word-spacing:0.336000pt;}
.ws12{word-spacing:0.343040pt;}
.ws8e{word-spacing:0.357146pt;}
.ws8f{word-spacing:0.368828pt;}
.ws5d{word-spacing:0.371840pt;}
.ws95{word-spacing:0.424960pt;}
.wsf2{word-spacing:0.432000pt;}
.ws74{word-spacing:0.478080pt;}
.wsc2{word-spacing:0.480000pt;}
.ws2d{word-spacing:0.528000pt;}
.ws14d{word-spacing:0.576000pt;}
.wsb7{word-spacing:0.584320pt;}
.wscd{word-spacing:0.624000pt;}
.ws45{word-spacing:0.637440pt;}
.ws14{word-spacing:0.643200pt;}
.ws31{word-spacing:0.672000pt;}
.ws3a{word-spacing:0.720000pt;}
.ws30{word-spacing:0.768000pt;}
.ws6c{word-spacing:0.849920pt;}
.ws6f{word-spacing:0.903040pt;}
.ws14e{word-spacing:0.912000pt;}
.wsef{word-spacing:0.960000pt;}
.wse9{word-spacing:1.008000pt;}
.ws96{word-spacing:1.009280pt;}
.wsa8{word-spacing:1.115520pt;}
.ws10c{word-spacing:1.152000pt;}
.wscb{word-spacing:1.200000pt;}
.ws57{word-spacing:1.221760pt;}
.ws4c{word-spacing:1.274880pt;}
.ws2c{word-spacing:1.296000pt;}
.ws33{word-spacing:1.344000pt;}
.ws4b{word-spacing:1.487360pt;}
.ws6e{word-spacing:1.540480pt;}
.ws12a{word-spacing:1.824000pt;}
.ws51{word-spacing:1.912320pt;}
.ws2f{word-spacing:1.920000pt;}
.ws2b{word-spacing:1.968000pt;}
.ws36{word-spacing:2.016000pt;}
.wsd3{word-spacing:2.160000pt;}
.ws94{word-spacing:2.177920pt;}
.ws131{word-spacing:2.256000pt;}
.wsb0{word-spacing:2.284160pt;}
.ws157{word-spacing:2.352000pt;}
.ws4f{word-spacing:2.390400pt;}
.ws39{word-spacing:2.496000pt;}
.ws4e{word-spacing:2.549760pt;}
.ws13d{word-spacing:2.592000pt;}
.wse3{word-spacing:2.640000pt;}
.ws2e{word-spacing:2.688000pt;}
.ws6b{word-spacing:2.815360pt;}
.wse2{word-spacing:2.880000pt;}
.ws50{word-spacing:3.027840pt;}
.ws107{word-spacing:3.120000pt;}
.ws55{word-spacing:3.187200pt;}
.ws116{word-spacing:3.216000pt;}
.ws8b{word-spacing:3.399680pt;}
.ws58{word-spacing:3.452800pt;}
.ws149{word-spacing:3.456000pt;}
.ws12e{word-spacing:3.504000pt;}
.wsfb{word-spacing:3.552000pt;}
.wsf9{word-spacing:3.648000pt;}
.wsfa{word-spacing:3.744000pt;}
.ws52{word-spacing:3.824640pt;}
.wsbf{word-spacing:3.840000pt;}
.ws13a{word-spacing:3.888000pt;}
.wscf{word-spacing:3.936000pt;}
.ws61{word-spacing:4.037120pt;}
.ws63{word-spacing:4.090240pt;}
.ws13b{word-spacing:4.176000pt;}
.wsb5{word-spacing:4.196480pt;}
.ws18{word-spacing:4.343040pt;}
.ws3c{word-spacing:4.416000pt;}
.ws53{word-spacing:4.462080pt;}
.ws12f{word-spacing:4.512000pt;}
.ws3b{word-spacing:4.560000pt;}
.ws19{word-spacing:4.642560pt;}
.ws40{word-spacing:4.674560pt;}
.ws59{word-spacing:4.727680pt;}
.ws130{word-spacing:4.752000pt;}
.ws28{word-spacing:4.833920pt;}
.wse8{word-spacing:4.944000pt;}
.ws98{word-spacing:5.099520pt;}
.wse4{word-spacing:5.136000pt;}
.wse5{word-spacing:5.184000pt;}
.ws10b{word-spacing:5.232000pt;}
.ws143{word-spacing:5.472000pt;}
.ws12b{word-spacing:5.664000pt;}
.ws69{word-spacing:5.736960pt;}
.wse6{word-spacing:5.760000pt;}
.ws85{word-spacing:6.055680pt;}
.wse7{word-spacing:6.096000pt;}
.ws68{word-spacing:6.108800pt;}
.ws100{word-spacing:6.240000pt;}
.ws83{word-spacing:6.268160pt;}
.ws26{word-spacing:6.427520pt;}
.wse1{word-spacing:6.432000pt;}
.ws84{word-spacing:6.640000pt;}
.ws54{word-spacing:6.693120pt;}
.ws27{word-spacing:6.799360pt;}
.wsdd{word-spacing:7.056000pt;}
.wseb{word-spacing:7.104000pt;}
.ws75{word-spacing:7.277440pt;}
.ws89{word-spacing:7.330560pt;}
.wsea{word-spacing:7.344000pt;}
.ws6d{word-spacing:7.702400pt;}
.ws66{word-spacing:7.968000pt;}
.ws127{word-spacing:8.256000pt;}
.ws5b{word-spacing:8.339840pt;}
.wsd5{word-spacing:8.352000pt;}
.ws128{word-spacing:8.400000pt;}
.ws129{word-spacing:8.592000pt;}
.ws9a{word-spacing:8.605440pt;}
.ws5c{word-spacing:8.711680pt;}
.wsc5{word-spacing:8.784000pt;}
.ws138{word-spacing:8.880000pt;}
.ws126{word-spacing:8.928000pt;}
.wsc4{word-spacing:8.976000pt;}
.ws67{word-spacing:8.977280pt;}
.wsc6{word-spacing:9.024000pt;}
.ws125{word-spacing:9.120000pt;}
.ws137{word-spacing:9.408000pt;}
.ws9b{word-spacing:9.455360pt;}
.wsd0{word-spacing:9.504000pt;}
.wsd1{word-spacing:9.600000pt;}
.ws81{word-spacing:9.614720pt;}
.ws139{word-spacing:9.840000pt;}
.wsd2{word-spacing:9.936000pt;}
.ws70{word-spacing:9.986560pt;}
.ws136{word-spacing:10.080000pt;}
.ws4a{word-spacing:10.252160pt;}
.ws49{word-spacing:10.624000pt;}
.wsb6{word-spacing:10.889600pt;}
.ws132{word-spacing:10.992000pt;}
.wsa4{word-spacing:11.102080pt;}
.ws87{word-spacing:11.155200pt;}
.ws56{word-spacing:11.527040pt;}
.ws117{word-spacing:11.616000pt;}
.ws32{word-spacing:12.096000pt;}
.ws25{word-spacing:12.164480pt;}
.ws37{word-spacing:12.192000pt;}
.ws11a{word-spacing:12.240000pt;}
.ws38{word-spacing:12.624000pt;}
.ws34{word-spacing:12.864000pt;}
.ws6a{word-spacing:13.439360pt;}
.ws8a{word-spacing:14.076800pt;}
.ws16{word-spacing:14.400000pt;}
.ws99{word-spacing:14.714240pt;}
.wsf0{word-spacing:14.736000pt;}
.wsf1{word-spacing:14.832000pt;}
.ws65{word-spacing:15.086080pt;}
.wsdc{word-spacing:15.936000pt;}
.wsbe{word-spacing:16.464000pt;}
.wsaf{word-spacing:16.626560pt;}
.wsbc{word-spacing:16.656000pt;}
.wsbd{word-spacing:16.992000pt;}
.ws71{word-spacing:17.264000pt;}
.ws62{word-spacing:17.901440pt;}
.wsb1{word-spacing:19.495040pt;}
.ws108{word-spacing:19.776000pt;}
.wsb2{word-spacing:19.866880pt;}
.ws10a{word-spacing:20.016000pt;}
.ws109{word-spacing:20.208000pt;}
.ws152{word-spacing:20.928000pt;}
.ws153{word-spacing:21.024000pt;}
.ws151{word-spacing:21.120000pt;}
.ws150{word-spacing:21.216000pt;}
.wsbb{word-spacing:21.600000pt;}
.wsb8{word-spacing:22.320000pt;}
.wsb9{word-spacing:22.752000pt;}
.ws115{word-spacing:24.144000pt;}
.ws113{word-spacing:24.960000pt;}
.ws114{word-spacing:25.296000pt;}
.ws121{word-spacing:27.984000pt;}
.ws11f{word-spacing:28.848000pt;}
.ws120{word-spacing:29.136000pt;}
.ws141{word-spacing:33.792000pt;}
.ws13f{word-spacing:33.984000pt;}
.ws140{word-spacing:34.176000pt;}
.ws148{word-spacing:34.368000pt;}
.ws142{word-spacing:34.416000pt;}
.ws145{word-spacing:35.136000pt;}
.ws146{word-spacing:35.232000pt;}
.ws147{word-spacing:35.568000pt;}
.ws15c{word-spacing:56.496000pt;}
.ws15a{word-spacing:56.976000pt;}
.ws15b{word-spacing:57.216000pt;}
.ws15e{word-spacing:58.416000pt;}
.ws15d{word-spacing:58.608000pt;}
.ws135{word-spacing:66.720000pt;}
.ws134{word-spacing:66.816000pt;}
.ws133{word-spacing:67.200000pt;}
.ws122{word-spacing:68.160000pt;}
.ws123{word-spacing:68.208000pt;}
.ws124{word-spacing:68.496000pt;}
.wse0{word-spacing:72.480000pt;}
.ws12c{word-spacing:72.672000pt;}
.wsde{word-spacing:72.864000pt;}
.wsdf{word-spacing:73.296000pt;}
.ws10d{word-spacing:74.160000pt;}
.ws10e{word-spacing:74.496000pt;}
.ws10f{word-spacing:74.736000pt;}
.wsee{word-spacing:75.360000pt;}
.wsed{word-spacing:75.888000pt;}
.wsec{word-spacing:76.320000pt;}
.wsf4{word-spacing:78.432000pt;}
.wsf5{word-spacing:78.528000pt;}
.wsf3{word-spacing:78.720000pt;}
.wsfe{word-spacing:82.272000pt;}
.wsfd{word-spacing:82.464000pt;}
.wsff{word-spacing:82.704000pt;}
.ws14c{word-spacing:92.640000pt;}
.ws14a{word-spacing:93.504000pt;}
.ws14b{word-spacing:93.792000pt;}
.ws155{word-spacing:96.720000pt;}
.ws154{word-spacing:97.200000pt;}
.ws156{word-spacing:98.064000pt;}
.ws14f{word-spacing:100.560000pt;}
.ws101{word-spacing:114.480000pt;}
.ws103{word-spacing:114.576000pt;}
.ws102{word-spacing:114.912000pt;}
.ws112{word-spacing:118.224000pt;}
.ws118{word-spacing:119.088000pt;}
.ws110{word-spacing:119.136000pt;}
.ws111{word-spacing:119.376000pt;}
.ws119{word-spacing:119.520000pt;}
.wsc3{word-spacing:123.696000pt;}
.wsc0{word-spacing:123.744000pt;}
.wsc1{word-spacing:123.888000pt;}
.wsd4{word-spacing:177.552000pt;}
._7{margin-left:-3.126656pt;}
._2{margin-left:-2.208000pt;}
._1{margin-left:-1.037696pt;}
._0{width:1.162048pt;}
._3{width:2.533952pt;}
._4{width:4.741696pt;}
._8{width:5.949440pt;}
._5{width:9.886912pt;}
._a{width:16.996032pt;}
._9{width:22.159936pt;}
._10{width:35.598592pt;}
._13{width:57.121344pt;}
._14{width:59.219712pt;}
._f{width:67.763712pt;}
._c{width:75.755136pt;}
._d{width:78.684288pt;}
._11{width:94.150336pt;}
._12{width:97.551872pt;}
._6{width:108.993945pt;}
._e{width:119.501248pt;}
._b{width:123.625664pt;}
.fs7{font-size:29.440000pt;}
.fs6{font-size:32.000000pt;}
.fs9{font-size:41.185600pt;}
.fse{font-size:42.802133pt;}
.fs1{font-size:42.880000pt;}
.fsc{font-size:43.163733pt;}
.fsb{font-size:46.103467pt;}
.fsf{font-size:47.367467pt;}
.fsd{font-size:47.767467pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fsa{font-size:51.020800pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y31{bottom:-18.720000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:15.118400pt;}
.ybc{bottom:20.155067pt;}
.yc4{bottom:20.396267pt;}
.y10d{bottom:32.544133pt;}
.y111{bottom:32.783467pt;}
.ybd{bottom:41.586800pt;}
.yc5{bottom:41.828133pt;}
.y98{bottom:49.623733pt;}
.y8d{bottom:49.814267pt;}
.y2{bottom:50.560000pt;}
.ybe{bottom:63.018800pt;}
.yc6{bottom:63.260000pt;}
.y99{bottom:69.604667pt;}
.y8e{bottom:69.795200pt;}
.y10e{bottom:78.912933pt;}
.y112{bottom:79.152133pt;}
.ybf{bottom:84.450667pt;}
.yc7{bottom:84.691867pt;}
.y9a{bottom:89.585733pt;}
.y8f{bottom:89.776133pt;}
.yba{bottom:99.135200pt;}
.y10b{bottom:99.200000pt;}
.y8b{bottom:102.560000pt;}
.y25{bottom:105.289280pt;}
.yc0{bottom:105.882533pt;}
.yc8{bottom:106.123867pt;}
.y9b{bottom:109.566667pt;}
.y90{bottom:109.757067pt;}
.y10a{bottom:112.988800pt;}
.ye1{bottom:113.915200pt;}
.y6f{bottom:114.837440pt;}
.y19b{bottom:116.008000pt;}
.yb9{bottom:117.049920pt;}
.y8a{bottom:121.902400pt;}
.y8c{bottom:122.490667pt;}
.y24{bottom:123.204000pt;}
.y10f{bottom:125.281600pt;}
.y113{bottom:125.520800pt;}
.yc1{bottom:127.314267pt;}
.yc9{bottom:127.555733pt;}
.y1d0{bottom:129.268000pt;}
.y9c{bottom:129.547467pt;}
.y91{bottom:129.738133pt;}
.y1b5{bottom:130.540000pt;}
.y19a{bottom:132.328000pt;}
.y6e{bottom:132.752160pt;}
.yb8{bottom:135.124000pt;}
.ye0{bottom:136.477920pt;}
.y115{bottom:137.656400pt;}
.y11d{bottom:138.163067pt;}
.y14e{bottom:139.524000pt;}
.y23{bottom:141.278080pt;}
.y175{bottom:142.084000pt;}
.y1cf{bottom:145.432000pt;}
.y1b4{bottom:147.976000pt;}
.yc2{bottom:148.746133pt;}
.yca{bottom:148.987467pt;}
.y9d{bottom:149.528533pt;}
.y92{bottom:149.718933pt;}
.y6d{bottom:150.826240pt;}
.yb7{bottom:153.038720pt;}
.y14d{bottom:156.960000pt;}
.ydf{bottom:159.200000pt;}
.y174{bottom:159.520000pt;}
.y199{bottom:160.324000pt;}
.y1ce{bottom:161.596000pt;}
.y116{bottom:165.742800pt;}
.y11e{bottom:166.243067pt;}
.y22{bottom:167.360000pt;}
.y6c{bottom:168.740960pt;}
.y9e{bottom:169.509600pt;}
.y93{bottom:169.699867pt;}
.yc3{bottom:170.178133pt;}
.ycb{bottom:170.419333pt;}
.yb6{bottom:171.112800pt;}
.y110{bottom:171.650400pt;}
.y114{bottom:171.889600pt;}
.y1b3{bottom:176.140000pt;}
.y198{bottom:177.928000pt;}
.yde{bottom:181.600000pt;}
.y14c{bottom:185.124000pt;}
.y6b{bottom:186.815040pt;}
.y173{bottom:187.684000pt;}
.y1cd{bottom:188.476000pt;}
.yb5{bottom:189.027520pt;}
.y9f{bottom:189.490400pt;}
.y94{bottom:189.680933pt;}
.y1b2{bottom:193.576000pt;}
.y117{bottom:193.829200pt;}
.y11f{bottom:194.323067pt;}
.ydd{bottom:200.703200pt;}
.y21{bottom:201.120000pt;}
.y14b{bottom:202.728000pt;}
.y1cc{bottom:204.640000pt;}
.y6a{bottom:204.729760pt;}
.y172{bottom:205.120000pt;}
.y197{bottom:205.924000pt;}
.yb4{bottom:207.101600pt;}
.ya0{bottom:209.471333pt;}
.y95{bottom:209.661733pt;}
.y14a{bottom:220.164000pt;}
.y1b1{bottom:220.456000pt;}
.y1cb{bottom:220.960000pt;}
.y118{bottom:221.915600pt;}
.y120{bottom:222.403067pt;}
.y69{bottom:222.644480pt;}
.y20{bottom:223.524000pt;}
.y196{bottom:223.528000pt;}
.yb3{bottom:225.016320pt;}
.yee{bottom:226.098000pt;}
.yf4{bottom:227.154000pt;}
.ya1{bottom:229.452400pt;}
.y96{bottom:229.642800pt;}
.y171{bottom:233.284000pt;}
.y1b0{bottom:236.620000pt;}
.y68{bottom:240.718560pt;}
.y1f{bottom:240.960000pt;}
.yb2{bottom:242.931040pt;}
.y149{bottom:248.328000pt;}
.y1ca{bottom:248.956000pt;}
.ya2{bottom:249.433333pt;}
.y97{bottom:249.623733pt;}
.y119{bottom:250.002000pt;}
.y195{bottom:250.408000pt;}
.y121{bottom:250.483067pt;}
.y170{bottom:250.720000pt;}
.y1af{bottom:252.784000pt;}
.yef{bottom:256.710000pt;}
.yf5{bottom:257.766000pt;}
.y1e{bottom:258.240000pt;}
.y67{bottom:258.633280pt;}
.y30{bottom:259.840000pt;}
.yb1{bottom:261.005120pt;}
.y2f{bottom:264.492000pt;}
.y148{bottom:265.764000pt;}
.y1c9{bottom:266.560000pt;}
.y194{bottom:266.572000pt;}
.y16f{bottom:268.156000pt;}
.y1d{bottom:276.007360pt;}
.y66{bottom:276.707360pt;}
.y11a{bottom:278.088400pt;}
.y122{bottom:278.563067pt;}
.y1ae{bottom:279.664000pt;}
.y2e{bottom:281.928000pt;}
.y193{bottom:282.736000pt;}
.y1c8{bottom:283.996000pt;}
.yb0{bottom:286.927680pt;}
.yf0{bottom:287.322000pt;}
.yf6{bottom:288.378000pt;}
.y147{bottom:293.928000pt;}
.y65{bottom:294.622080pt;}
.y1ad{bottom:295.828000pt;}
.y16e{bottom:296.320000pt;}
.y2d{bottom:299.208000pt;}
.y1c{bottom:302.089280pt;}
.y11b{bottom:306.174800pt;}
.y123{bottom:306.643067pt;}
.y192{bottom:310.900000pt;}
.y146{bottom:311.364000pt;}
.y1c7{bottom:312.160000pt;}
.y64{bottom:312.696160pt;}
.y16d{bottom:313.756000pt;}
.y2c{bottom:316.488000pt;}
.yf1{bottom:317.934000pt;}
.yf7{bottom:318.990000pt;}
.yaf{bottom:321.004160pt;}
.y1ac{bottom:323.992000pt;}
.y191{bottom:328.336000pt;}
.y145{bottom:328.800000pt;}
.y1c6{bottom:329.596000pt;}
.y63{bottom:330.610880pt;}
.y2b{bottom:333.924000pt;}
.y11c{bottom:334.261200pt;}
.y124{bottom:334.723067pt;}
.y1b{bottom:336.006400pt;}
.yae{bottom:338.918880pt;}
.y1ab{bottom:341.596000pt;}
.y16c{bottom:341.920000pt;}
.y190{bottom:345.772000pt;}
.y62{bottom:348.525600pt;}
.yf2{bottom:348.546000pt;}
.yf8{bottom:349.602000pt;}
.y2a{bottom:351.204000pt;}
.yad{bottom:356.992960pt;}
.y1c5{bottom:357.760000pt;}
.y16b{bottom:359.356000pt;}
.y144{bottom:362.575840pt;}
.y61{bottom:366.599680pt;}
.y29{bottom:368.484000pt;}
.y1aa{bottom:369.592000pt;}
.y1a{bottom:370.082880pt;}
.y109{bottom:370.912960pt;}
.y18f{bottom:373.936000pt;}
.yac{bottom:374.907680pt;}
.y1c4{bottom:375.196000pt;}
.yf3{bottom:379.158000pt;}
.yf9{bottom:380.214000pt;}
.y60{bottom:384.514400pt;}
.y28{bottom:385.920000pt;}
.y1a9{bottom:387.196000pt;}
.y16a{bottom:387.520000pt;}
.y108{bottom:388.987040pt;}
.y18e{bottom:391.372000pt;}
.y1c3{bottom:392.632000pt;}
.yab{bottom:392.822400pt;}
.y143{bottom:396.492960pt;}
.y5f{bottom:402.588480pt;}
.y27{bottom:403.200000pt;}
.y89{bottom:403.823520pt;}
.y19{bottom:404.000000pt;}
.y107{bottom:406.901760pt;}
.y18d{bottom:408.808000pt;}
.yaa{bottom:410.896480pt;}
.y142{bottom:414.567040pt;}
.y1a8{bottom:415.192000pt;}
.y169{bottom:415.684000pt;}
.ydc{bottom:417.658560pt;}
.y26{bottom:420.480000pt;}
.y5e{bottom:420.503200pt;}
.y1c2{bottom:420.796000pt;}
.y106{bottom:424.816480pt;}
.y88{bottom:426.386240pt;}
.ya9{bottom:428.811200pt;}
.y141{bottom:432.481760pt;}
.y1a7{bottom:432.796000pt;}
.y168{bottom:433.120000pt;}
.y18c{bottom:436.972000pt;}
.y18{bottom:437.760000pt;}
.y1c1{bottom:438.232000pt;}
.y5d{bottom:438.577280pt;}
.ydb{bottom:440.380640pt;}
.y105{bottom:442.890560pt;}
.y87{bottom:444.460320pt;}
.ya8{bottom:446.885280pt;}
.y1a6{bottom:450.232000pt;}
.y140{bottom:450.396480pt;}
.y18b{bottom:454.408000pt;}
.y5c{bottom:456.492000pt;}
.yda{bottom:458.295360pt;}
.y17{bottom:460.160000pt;}
.y104{bottom:460.805280pt;}
.y167{bottom:461.284000pt;}
.y86{bottom:462.375040pt;}
.ya7{bottom:464.800000pt;}
.y1c0{bottom:466.396000pt;}
.y13f{bottom:468.470560pt;}
.y18a{bottom:472.012000pt;}
.y5b{bottom:474.406720pt;}
.yd9{bottom:476.210080pt;}
.y16{bottom:477.941600pt;}
.y1a5{bottom:478.396000pt;}
.y103{bottom:478.720000pt;}
.y85{bottom:480.449120pt;}
.ya6{bottom:482.400000pt;}
.y13e{bottom:486.385280pt;}
.y5a{bottom:492.480800pt;}
.yd8{bottom:494.284160pt;}
.y1bf{bottom:494.560000pt;}
.y1a4{bottom:495.832000pt;}
.y15{bottom:496.015680pt;}
.y102{bottom:496.320000pt;}
.y84{bottom:498.363840pt;}
.y189{bottom:500.176000pt;}
.ya5{bottom:501.683840pt;}
.ybb{bottom:501.726667pt;}
.y3a{bottom:503.852000pt;}
.y13d{bottom:504.459360pt;}
.y166{bottom:506.884000pt;}
.y59{bottom:510.395520pt;}
.y1be{bottom:511.996000pt;}
.yd7{bottom:512.198880pt;}
.y101{bottom:515.588000pt;}
.y10c{bottom:515.952000pt;}
.y83{bottom:516.278560pt;}
.y188{bottom:517.612000pt;}
.y39{bottom:521.288000pt;}
.y13c{bottom:522.374080pt;}
.y1a3{bottom:522.712000pt;}
.y165{bottom:524.320000pt;}
.y58{bottom:528.469600pt;}
.y1bd{bottom:529.432000pt;}
.y14{bottom:529.932800pt;}
.yd6{bottom:530.272960pt;}
.y38{bottom:538.568000pt;}
.y1a2{bottom:538.876000pt;}
.y13b{bottom:540.288800pt;}
.y164{bottom:541.756000pt;}
.y82{bottom:542.360480pt;}
.y187{bottom:545.776000pt;}
.y57{bottom:546.384320pt;}
.yd5{bottom:548.187680pt;}
.y37{bottom:555.848000pt;}
.y1bc{bottom:556.312000pt;}
.y13a{bottom:558.362880pt;}
.y186{bottom:563.212000pt;}
.y13{bottom:564.009280pt;}
.y56{bottom:564.299040pt;}
.yd4{bottom:566.261760pt;}
.y1a1{bottom:567.040000pt;}
.y163{bottom:569.920000pt;}
.y1bb{bottom:572.476000pt;}
.y36{bottom:573.284000pt;}
.y139{bottom:576.277600pt;}
.y81{bottom:576.436960pt;}
.y185{bottom:580.648000pt;}
.y55{bottom:582.373120pt;}
.yd3{bottom:584.176480pt;}
.y1a0{bottom:584.476000pt;}
.y162{bottom:587.356000pt;}
.y35{bottom:590.564000pt;}
.y138{bottom:594.351680pt;}
.y12{bottom:597.926400pt;}
.y54{bottom:600.287840pt;}
.y1ba{bottom:600.640000pt;}
.yd2{bottom:602.091200pt;}
.y161{bottom:604.960000pt;}
.y34{bottom:607.844000pt;}
.y184{bottom:608.812000pt;}
.y80{bottom:610.354080pt;}
.y137{bottom:612.266400pt;}
.y19f{bottom:612.640000pt;}
.y53{bottom:618.361920pt;}
.yd1{bottom:620.165280pt;}
.y33{bottom:625.280000pt;}
.y183{bottom:626.248000pt;}
.y1b9{bottom:627.520000pt;}
.y7f{bottom:628.268800pt;}
.y19e{bottom:630.076000pt;}
.y136{bottom:630.340480pt;}
.y11{bottom:632.002880pt;}
.y160{bottom:633.124000pt;}
.y52{bottom:636.276640pt;}
.yd0{bottom:638.080000pt;}
.y32{bottom:642.560000pt;}
.y1b8{bottom:643.684000pt;}
.y7e{bottom:646.342880pt;}
.y135{bottom:648.255200pt;}
.y15f{bottom:650.560000pt;}
.y51{bottom:654.350720pt;}
.y182{bottom:654.412000pt;}
.ycf{bottom:656.956000pt;}
.y7d{bottom:664.257600pt;}
.y10{bottom:665.920000pt;}
.y134{bottom:666.169920pt;}
.y181{bottom:671.848000pt;}
.y50{bottom:672.265440pt;}
.y19d{bottom:673.120000pt;}
.yce{bottom:674.560000pt;}
.y15e{bottom:678.724000pt;}
.y7c{bottom:682.172320pt;}
.y133{bottom:684.244000pt;}
.y1d5{bottom:688.636000pt;}
.y19c{bottom:689.284000pt;}
.y4f{bottom:690.180160pt;}
.y15d{bottom:696.160000pt;}
.yf{bottom:699.360000pt;}
.y180{bottom:700.012000pt;}
.y7b{bottom:700.246400pt;}
.y132{bottom:702.158720pt;}
.ya4{bottom:703.606240pt;}
.y1d4{bottom:704.800000pt;}
.y4e{bottom:708.254240pt;}
.ye2{bottom:713.306000pt;}
.ye8{bottom:714.362000pt;}
.ye{bottom:715.520000pt;}
.y1d3{bottom:717.440000pt;}
.y17f{bottom:717.448000pt;}
.y7a{bottom:718.161120pt;}
.y131{bottom:720.232800pt;}
.y15c{bottom:724.324000pt;}
.y4d{bottom:726.168960pt;}
.y100{bottom:731.587200pt;}
.y17e{bottom:734.884000pt;}
.yd{bottom:735.200000pt;}
.y79{bottom:736.235200pt;}
.y130{bottom:738.147520pt;}
.ye3{bottom:741.686000pt;}
.ye9{bottom:742.742000pt;}
.y4c{bottom:744.243040pt;}
.y15b{bottom:752.488000pt;}
.y78{bottom:754.149920pt;}
.y12f{bottom:756.221600pt;}
.yc{bottom:756.485280pt;}
.y4b{bottom:762.157760pt;}
.y17d{bottom:763.048000pt;}
.y15a{bottom:769.924000pt;}
.ye4{bottom:770.066000pt;}
.yea{bottom:771.122000pt;}
.y77{bottom:772.224000pt;}
.y12e{bottom:774.136320pt;}
.yb{bottom:774.400000pt;}
.y4a{bottom:780.231840pt;}
.y17c{bottom:780.484000pt;}
.y1d2{bottom:780.964000pt;}
.y76{bottom:790.138720pt;}
.ya{bottom:792.000000pt;}
.y12d{bottom:792.051040pt;}
.y159{bottom:798.088000pt;}
.y49{bottom:798.146560pt;}
.ye5{bottom:798.446000pt;}
.yeb{bottom:799.502000pt;}
.y75{bottom:808.053440pt;}
.y17b{bottom:808.648000pt;}
.y12c{bottom:810.125120pt;}
.y1d1{bottom:814.408000pt;}
.y158{bottom:815.524000pt;}
.y48{bottom:816.061280pt;}
.y9{bottom:818.237760pt;}
.y17a{bottom:826.084000pt;}
.y74{bottom:826.127520pt;}
.ye6{bottom:826.826000pt;}
.yec{bottom:827.882000pt;}
.y12b{bottom:828.039840pt;}
.y47{bottom:834.135360pt;}
.y8{bottom:843.360000pt;}
.y157{bottom:843.688000pt;}
.y73{bottom:844.042240pt;}
.y12a{bottom:846.113920pt;}
.y46{bottom:852.050080pt;}
.ye7{bottom:855.206000pt;}
.yed{bottom:856.262000pt;}
.y156{bottom:861.124000pt;}
.y72{bottom:862.116320pt;}
.y129{bottom:864.028640pt;}
.y45{bottom:870.124160pt;}
.y179{bottom:871.684000pt;}
.y155{bottom:878.560000pt;}
.y71{bottom:880.031040pt;}
.y128{bottom:882.102720pt;}
.y7{bottom:886.232000pt;}
.y44{bottom:888.038880pt;}
.y178{bottom:889.288000pt;}
.yff{bottom:898.105120pt;}
.y127{bottom:900.017440pt;}
.ycd{bottom:904.665440pt;}
.y43{bottom:906.112960pt;}
.y70{bottom:906.272320pt;}
.y154{bottom:906.724000pt;}
.yfe{bottom:916.019840pt;}
.y1b7{bottom:917.452000pt;}
.y126{bottom:917.932160pt;}
.y6{bottom:918.560000pt;}
.y42{bottom:924.027680pt;}
.y153{bottom:924.160000pt;}
.ycc{bottom:924.187040pt;}
.yfd{bottom:933.934560pt;}
.y177{bottom:934.888000pt;}
.y152{bottom:941.596000pt;}
.y41{bottom:941.942400pt;}
.y125{bottom:944.173440pt;}
.y5{bottom:947.680000pt;}
.yfc{bottom:952.008640pt;}
.y176{bottom:952.324000pt;}
.y40{bottom:960.016480pt;}
.y151{bottom:969.760000pt;}
.yfb{bottom:969.923360pt;}
.y3f{bottom:977.931200pt;}
.y1b6{bottom:980.488000pt;}
.y4{bottom:980.960000pt;}
.yfa{bottom:987.997440pt;}
.y1{bottom:993.760000pt;}
.y3e{bottom:996.005280pt;}
.y150{bottom:997.924000pt;}
.y3d{bottom:1013.920000pt;}
.y14f{bottom:1015.360000pt;}
.y3{bottom:1025.440000pt;}
.y3c{bottom:1035.040000pt;}
.y3b{bottom:1064.160000pt;}
.h10{height:27.450363pt;}
.h17{height:28.527789pt;}
.h14{height:28.768797pt;}
.h9{height:29.427188pt;}
.h12{height:31.561065pt;}
.hd{height:31.992188pt;}
.h18{height:32.426361pt;}
.h15{height:32.700190pt;}
.h11{height:34.927325pt;}
.h4{height:38.231875pt;}
.h19{height:38.294687pt;}
.h3{height:39.885937pt;}
.h2{height:42.656250pt;}
.h7{height:42.867188pt;}
.h1a{height:42.883187pt;}
.ha{height:44.648438pt;}
.he{height:45.153438pt;}
.hb{height:47.439687pt;}
.h8{height:49.410937pt;}
.h6{height:69.651562pt;}
.h5{height:89.296875pt;}
.hc{height:190.400000pt;}
.h13{height:197.688000pt;}
.h16{height:211.441333pt;}
.hf{height:277.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:582.080000pt;}
.w5{width:611.162667pt;}
.w4{width:616.189333pt;}
.w3{width:657.882667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:8.371467pt;}
.x9{left:9.600000pt;}
.x53{left:17.384800pt;}
.x55{left:38.087867pt;}
.x54{left:39.716933pt;}
.x24{left:47.924533pt;}
.x27{left:62.830667pt;}
.x22{left:64.385733pt;}
.x29{left:67.381200pt;}
.x23{left:68.469200pt;}
.x28{left:71.176400pt;}
.x2a{left:79.490267pt;}
.x2e{left:85.144000pt;}
.x38{left:86.141733pt;}
.x25{left:89.544933pt;}
.x39{left:90.619600pt;}
.x8{left:100.480000pt;}
.xf{left:104.086667pt;}
.x7{left:110.080000pt;}
.x2{left:113.440000pt;}
.x4e{left:115.843680pt;}
.x36{left:117.445200pt;}
.x35{left:119.633333pt;}
.x4{left:120.960000pt;}
.x5{left:122.880000pt;}
.x4a{left:125.901067pt;}
.x37{left:130.621333pt;}
.x5e{left:134.678800pt;}
.xa{left:137.440000pt;}
.x60{left:138.518800pt;}
.x3a{left:140.318720pt;}
.x6{left:141.752960pt;}
.x5f{left:155.162800pt;}
.x19{left:156.974000pt;}
.x4c{left:158.844320pt;}
.xb{left:161.436960pt;}
.x49{left:172.377067pt;}
.x5d{left:177.194800pt;}
.x4b{left:184.641067pt;}
.x1a{left:187.433333pt;}
.x2c{left:192.635680pt;}
.x1b{left:202.877467pt;}
.x10{left:205.733600pt;}
.x44{left:206.971733pt;}
.xc{left:208.501280pt;}
.x11{left:213.455733pt;}
.x61{left:217.440000pt;}
.x2b{left:226.057200pt;}
.x46{left:233.539733pt;}
.x1c{left:241.058933pt;}
.x45{left:263.251733pt;}
.x1d{left:264.225067pt;}
.x12{left:266.652400pt;}
.x2f{left:267.926133pt;}
.x4f{left:293.291040pt;}
.x1e{left:310.128667pt;}
.xe{left:318.080000pt;}
.x51{left:332.160000pt;}
.x15{left:335.722133pt;}
.x43{left:345.175733pt;}
.x30{left:349.255867pt;}
.x1{left:351.360000pt;}
.x3b{left:367.353600pt;}
.x31{left:371.136400pt;}
.x1f{left:378.769467pt;}
.x3c{left:396.800000pt;}
.x20{left:401.935733pt;}
.x21{left:417.379867pt;}
.x17{left:442.973333pt;}
.x13{left:450.695467pt;}
.x32{left:452.466133pt;}
.x47{left:463.581067pt;}
.x56{left:465.288400pt;}
.x57{left:483.834000pt;}
.x14{left:504.321067pt;}
.x58{left:510.012240pt;}
.x33{left:511.502400pt;}
.x18{left:512.901067pt;}
.x3e{left:517.699733pt;}
.x59{left:543.555120pt;}
.x5a{left:547.371440pt;}
.x16{left:550.224400pt;}
.x3f{left:558.355733pt;}
.x40{left:564.067733pt;}
.x52{left:580.745333pt;}
.x34{left:584.988133pt;}
.x5b{left:592.095280pt;}
.x3{left:609.760000pt;}
.x41{left:616.147733pt;}
.x5c{left:625.916880pt;}
.x48{left:628.017067pt;}
.x42{left:633.619733pt;}
.x50{left:666.246560pt;}
.x4d{left:696.936640pt;}
.x3d{left:699.373920pt;}
.x2d{left:701.272960pt;}
.xd{left:762.250720pt;}
}




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