
    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_dfdfb651e9d18e6e54c4ff2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_78e50fa3d5f845fb51f9b95f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133301;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_bd61e7cf5ca60d55902c0f0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_2f3e5c8192e38d3119b8da41.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_de0807339bff3a5172298db8.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_15edc92de97fce3dd1ef4fd3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.813760px;}
.ls5a{letter-spacing:-0.836640px;}
.ls40{letter-spacing:-0.717120px;}
.ls17{letter-spacing:-0.675360px;}
.ls3f{letter-spacing:-0.657360px;}
.ls4b{letter-spacing:-0.597600px;}
.ls32{letter-spacing:-0.459360px;}
.ls59{letter-spacing:-0.418320px;}
.ls7a{letter-spacing:-0.358560px;}
.lsb{letter-spacing:-0.336960px;}
.ls60{letter-spacing:-0.334080px;}
.ls1c{letter-spacing:-0.298800px;}
.ls48{letter-spacing:-0.292320px;}
.ls1d{letter-spacing:-0.239040px;}
.lsa{letter-spacing:-0.216000px;}
.ls49{letter-spacing:-0.208800px;}
.ls5b{letter-spacing:-0.179280px;}
.ls20{letter-spacing:-0.167040px;}
.ls8{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.125280px;}
.ls1a{letter-spacing:-0.119520px;}
.ls30{letter-spacing:-0.084240px;}
.ls5f{letter-spacing:-0.083520px;}
.ls18{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.059760px;}
.ls41{letter-spacing:0.077760px;}
.ls11{letter-spacing:0.080640px;}
.ls50{letter-spacing:0.084240px;}
.ls1b{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.162000px;}
.ls2f{letter-spacing:0.168480px;}
.lsd{letter-spacing:0.179280px;}
.ls2{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.190080px;}
.ls42{letter-spacing:0.191520px;}
.ls63{letter-spacing:0.197208px;}
.ls47{letter-spacing:0.208800px;}
.ls19{letter-spacing:0.216000px;}
.ls66{letter-spacing:0.221112px;}
.ls78{letter-spacing:0.239040px;}
.ls62{letter-spacing:0.245016px;}
.ls15{letter-spacing:0.250560px;}
.ls25{letter-spacing:0.250992px;}
.ls4{letter-spacing:0.275040px;}
.ls9{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.292320px;}
.ls5{letter-spacing:0.298800px;}
.ls3a{letter-spacing:0.316728px;}
.ls77{letter-spacing:0.328680px;}
.ls16{letter-spacing:0.334080px;}
.ls7{letter-spacing:0.337680px;}
.ls45{letter-spacing:0.338256px;}
.ls2e{letter-spacing:0.358560px;}
.ls31{letter-spacing:0.418320px;}
.ls4c{letter-spacing:0.442224px;}
.ls4e{letter-spacing:0.478080px;}
.ls69{letter-spacing:0.537840px;}
.ls3d{letter-spacing:0.584640px;}
.ls4a{letter-spacing:0.626400px;}
.ls44{letter-spacing:0.668160px;}
.ls72{letter-spacing:0.717120px;}
.ls6f{letter-spacing:0.896400px;}
.ls24{letter-spacing:1.015920px;}
.ls5c{letter-spacing:1.044000px;}
.ls6e{letter-spacing:1.075680px;}
.ls5e{letter-spacing:1.378080px;}
.ls3{letter-spacing:1.733040px;}
.ls2b{letter-spacing:2.450160px;}
.ls3c{letter-spacing:2.930400px;}
.ls26{letter-spacing:3.140640px;}
.ls3b{letter-spacing:3.167280px;}
.ls2c{letter-spacing:3.884400px;}
.ls2d{letter-spacing:3.902328px;}
.ls23{letter-spacing:4.601520px;}
.ls27{letter-spacing:5.318640px;}
.ls36{letter-spacing:6.035760px;}
.ls4f{letter-spacing:6.752880px;}
.ls53{letter-spacing:7.529760px;}
.ls52{letter-spacing:8.246880px;}
.ls12{letter-spacing:8.964000px;}
.ls38{letter-spacing:9.681120px;}
.ls4d{letter-spacing:10.398240px;}
.ls6a{letter-spacing:11.073528px;}
.ls54{letter-spacing:11.115360px;}
.ls46{letter-spacing:11.151216px;}
.ls14{letter-spacing:11.163168px;}
.ls6b{letter-spacing:11.832480px;}
.ls43{letter-spacing:12.193920px;}
.ls10{letter-spacing:12.549600px;}
.ls75{letter-spacing:13.983840px;}
.ls55{letter-spacing:14.700960px;}
.ls3e{letter-spacing:15.418080px;}
.ls35{letter-spacing:16.135200px;}
.ls57{letter-spacing:16.852320px;}
.ls2a{letter-spacing:17.569440px;}
.ls33{letter-spacing:17.617248px;}
.ls22{letter-spacing:19.003680px;}
.ls28{letter-spacing:20.086560px;}
.ls29{letter-spacing:20.099088px;}
.ls71{letter-spacing:21.155040px;}
.ls37{letter-spacing:21.931920px;}
.ls70{letter-spacing:23.366160px;}
.ls51{letter-spacing:25.517520px;}
.ls73{letter-spacing:26.951760px;}
.ls39{letter-spacing:28.386000px;}
.ls6c{letter-spacing:31.254480px;}
.ls21{letter-spacing:32.011200px;}
.ls56{letter-spacing:34.122960px;}
.ls34{letter-spacing:40.636800px;}
.lsf{letter-spacing:45.504000px;}
.ls58{letter-spacing:46.373760px;}
.ls6d{letter-spacing:50.676480px;}
.ls64{letter-spacing:59.341680px;}
.ls76{letter-spacing:68.724000px;}
.ls5d{letter-spacing:73.372320px;}
.ls79{letter-spacing:91.193760px;}
.ls61{letter-spacing:92.448720px;}
.ls74{letter-spacing:96.034320px;}
.ls67{letter-spacing:126.272880px;}
.ls68{letter-spacing:153.642960px;}
.ls65{letter-spacing:232.884720px;}
.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;}
}
.ws68{word-spacing:-22.070880px;}
.wsfb{word-spacing:-21.818160px;}
.ws1b{word-spacing:-18.936000px;}
.ws1a{word-spacing:-18.648000px;}
.ws113{word-spacing:-16.254720px;}
.wsc3{word-spacing:-15.955920px;}
.wsfc{word-spacing:-15.896160px;}
.ws21{word-spacing:-15.836400px;}
.ws5{word-spacing:-15.716880px;}
.ws1d{word-spacing:-15.657120px;}
.ws1c{word-spacing:-15.597360px;}
.ws1f{word-spacing:-15.537600px;}
.ws6{word-spacing:-15.477840px;}
.ws69{word-spacing:-15.418080px;}
.wsd9{word-spacing:-15.358320px;}
.ws20{word-spacing:-15.298560px;}
.ws1e{word-spacing:-15.238800px;}
.ws137{word-spacing:-15.119280px;}
.wsd8{word-spacing:-14.940000px;}
.ws92{word-spacing:-14.880240px;}
.ws139{word-spacing:-13.983840px;}
.ws13c{word-spacing:-13.924080px;}
.ws136{word-spacing:-13.864320px;}
.ws4{word-spacing:-13.824000px;}
.ws13b{word-spacing:-13.744800px;}
.ws138{word-spacing:-13.625280px;}
.ws13a{word-spacing:-13.565520px;}
.ws2{word-spacing:-12.762000px;}
.ws1{word-spacing:-12.744000px;}
.ws3{word-spacing:-12.582000px;}
.ws19{word-spacing:-11.577600px;}
.wsae{word-spacing:-11.484000px;}
.ws93{word-spacing:-11.149920px;}
.wsf1{word-spacing:-11.108160px;}
.ws22{word-spacing:-10.857600px;}
.wsf2{word-spacing:-10.774080px;}
.ws23{word-spacing:-10.732320px;}
.ws24{word-spacing:-10.690560px;}
.wsad{word-spacing:-10.648800px;}
.wsf3{word-spacing:-10.523520px;}
.ws6a{word-spacing:-10.398240px;}
.ws94{word-spacing:-10.186560px;}
.ws95{word-spacing:-7.305120px;}
.wsd0{word-spacing:-3.925440px;}
.ws30{word-spacing:-3.585600px;}
.ws9e{word-spacing:-3.346560px;}
.wsd1{word-spacing:-3.173760px;}
.ws54{word-spacing:-3.167280px;}
.ws119{word-spacing:-3.047760px;}
.ws5c{word-spacing:-2.868480px;}
.ws4f{word-spacing:-2.629440px;}
.ws63{word-spacing:-2.505600px;}
.wsb6{word-spacing:-2.463840px;}
.wsd7{word-spacing:-2.450160px;}
.ws120{word-spacing:-2.330640px;}
.ws53{word-spacing:-2.151360px;}
.wsb8{word-spacing:-2.088000px;}
.ws134{word-spacing:-1.972080px;}
.ws38{word-spacing:-1.912320px;}
.wsba{word-spacing:-1.852560px;}
.wsa5{word-spacing:-1.613520px;}
.ws73{word-spacing:-1.553760px;}
.ws42{word-spacing:-1.434240px;}
.wsb7{word-spacing:-1.378080px;}
.ws58{word-spacing:-1.195200px;}
.ws72{word-spacing:-1.135440px;}
.ws6f{word-spacing:-1.015920px;}
.ws4c{word-spacing:-1.002240px;}
.ws8{word-spacing:-0.771840px;}
.wsa{word-spacing:-0.720000px;}
.ws81{word-spacing:-0.717120px;}
.wsb3{word-spacing:-0.626400px;}
.wsb9{word-spacing:-0.584640px;}
.ws13{word-spacing:-0.478080px;}
.ws62{word-spacing:-0.375840px;}
.wsd2{word-spacing:-0.336960px;}
.ws66{word-spacing:-0.334080px;}
.ws41{word-spacing:-0.298800px;}
.ws45{word-spacing:-0.292320px;}
.wsb5{word-spacing:-0.250560px;}
.ws13d{word-spacing:-0.239040px;}
.wsaf{word-spacing:-0.208800px;}
.ws12b{word-spacing:-0.179280px;}
.ws6d{word-spacing:-0.168480px;}
.wsf4{word-spacing:-0.162000px;}
.wsde{word-spacing:-0.119520px;}
.wse{word-spacing:-0.059760px;}
.ws7{word-spacing:-0.054000px;}
.ws87{word-spacing:-0.041760px;}
.ws0{word-spacing:0.000000px;}
.ws70{word-spacing:0.059760px;}
.ws67{word-spacing:0.083520px;}
.ws2f{word-spacing:0.119520px;}
.ws4a{word-spacing:0.125280px;}
.wsb4{word-spacing:0.167040px;}
.wsc{word-spacing:0.168480px;}
.wse8{word-spacing:0.179280px;}
.ws18{word-spacing:0.239040px;}
.wsb1{word-spacing:0.292320px;}
.ws4e{word-spacing:0.298800px;}
.wsb0{word-spacing:0.375840px;}
.ws84{word-spacing:0.417600px;}
.ws8a{word-spacing:0.418320px;}
.ws9{word-spacing:0.432000px;}
.wsb{word-spacing:0.594000px;}
.ws7c{word-spacing:0.597600px;}
.wsd6{word-spacing:0.657360px;}
.ws25{word-spacing:0.675360px;}
.ws8e{word-spacing:0.717120px;}
.wsb2{word-spacing:0.793440px;}
.wsdc{word-spacing:0.836640px;}
.ws8c{word-spacing:0.956160px;}
.wsfa{word-spacing:1.015920px;}
.wsed{word-spacing:1.085760px;}
.wsee{word-spacing:1.127520px;}
.ws27{word-spacing:1.135440px;}
.ws122{word-spacing:1.254960px;}
.wsd4{word-spacing:1.314720px;}
.ws71{word-spacing:1.434240px;}
.wsd{word-spacing:1.673280px;}
.wsd5{word-spacing:1.733040px;}
.ws49{word-spacing:1.795680px;}
.ws4b{word-spacing:1.837440px;}
.ws10{word-spacing:2.151360px;}
.ws17{word-spacing:2.390400px;}
.wsef{word-spacing:2.450160px;}
.ws123{word-spacing:2.509920px;}
.wsac{word-spacing:2.569680px;}
.ws48{word-spacing:2.589120px;}
.wsdf{word-spacing:2.748960px;}
.wsda{word-spacing:2.868480px;}
.ws5a{word-spacing:2.928240px;}
.wsf{word-spacing:3.167280px;}
.ws79{word-spacing:3.227040px;}
.ws111{word-spacing:3.286800px;}
.ws118{word-spacing:3.466080px;}
.ws9b{word-spacing:3.525840px;}
.ws11{word-spacing:3.645360px;}
.ws12{word-spacing:3.884400px;}
.wse2{word-spacing:3.944160px;}
.wsbf{word-spacing:4.008960px;}
.ws80{word-spacing:4.063680px;}
.ws5f{word-spacing:4.362480px;}
.wsbe{word-spacing:4.551840px;}
.ws50{word-spacing:4.601520px;}
.ws61{word-spacing:4.661280px;}
.ws60{word-spacing:4.721040px;}
.wsf5{word-spacing:4.760640px;}
.wse6{word-spacing:4.780800px;}
.ws4d{word-spacing:5.079600px;}
.ws16{word-spacing:5.318640px;}
.ws82{word-spacing:5.378400px;}
.ws47{word-spacing:5.470560px;}
.wse7{word-spacing:5.497920px;}
.ws15{word-spacing:5.796720px;}
.ws14{word-spacing:6.035760px;}
.wsa0{word-spacing:6.095520px;}
.ws9f{word-spacing:6.215040px;}
.ws3e{word-spacing:6.513840px;}
.ws6b{word-spacing:6.752880px;}
.ws114{word-spacing:6.812640px;}
.ws39{word-spacing:7.230960px;}
.ws2e{word-spacing:7.470000px;}
.ws5e{word-spacing:7.529760px;}
.wsdb{word-spacing:7.589520px;}
.wsdd{word-spacing:7.649280px;}
.ws36{word-spacing:7.948080px;}
.ws35{word-spacing:8.187120px;}
.wsff{word-spacing:8.366400px;}
.wscf{word-spacing:8.545680px;}
.ws3c{word-spacing:8.665200px;}
.ws2b{word-spacing:8.904240px;}
.wsa1{word-spacing:8.964000px;}
.wse5{word-spacing:9.083520px;}
.wsa9{word-spacing:9.382320px;}
.wsa3{word-spacing:9.621360px;}
.wsbb{word-spacing:9.800640px;}
.ws103{word-spacing:9.920160px;}
.ws5b{word-spacing:10.099440px;}
.ws3f{word-spacing:10.338480px;}
.ws11a{word-spacing:10.637280px;}
.wsc6{word-spacing:10.816560px;}
.wsc2{word-spacing:11.055600px;}
.ws59{word-spacing:11.234880px;}
.ws115{word-spacing:11.354400px;}
.ws89{word-spacing:11.533680px;}
.ws51{word-spacing:11.772720px;}
.ws46{word-spacing:11.901600px;}
.ws2c{word-spacing:12.250800px;}
.ws3d{word-spacing:12.489840px;}
.wsea{word-spacing:12.669120px;}
.wseb{word-spacing:12.848400px;}
.ws32{word-spacing:12.967920px;}
.wsd3{word-spacing:13.206960px;}
.wsec{word-spacing:13.386240px;}
.ws55{word-spacing:13.685040px;}
.wsc0{word-spacing:13.924080px;}
.ws135{word-spacing:14.222880px;}
.ws110{word-spacing:14.402160px;}
.ws2a{word-spacing:14.641200px;}
.ws96{word-spacing:14.700960px;}
.ws7d{word-spacing:14.820480px;}
.ws7e{word-spacing:14.940000px;}
.ws56{word-spacing:15.119280px;}
.wsaa{word-spacing:15.358320px;}
.wsa8{word-spacing:15.534720px;}
.wse9{word-spacing:15.537600px;}
.wsa7{word-spacing:15.836400px;}
.ws7b{word-spacing:16.075440px;}
.ws9d{word-spacing:16.254720px;}
.ws5d{word-spacing:16.553520px;}
.ws37{word-spacing:16.792560px;}
.ws131{word-spacing:17.091360px;}
.ws6c{word-spacing:17.330400px;}
.ws26{word-spacing:17.569440px;}
.wsbc{word-spacing:17.629200px;}
.ws64{word-spacing:17.664480px;}
.ws65{word-spacing:17.706240px;}
.ws88{word-spacing:17.748720px;}
.ws90{word-spacing:18.047520px;}
.ws33{word-spacing:18.286560px;}
.ws34{word-spacing:18.585360px;}
.ws6e{word-spacing:18.764640px;}
.ws43{word-spacing:19.003680px;}
.ws76{word-spacing:19.481760px;}
.ws31{word-spacing:19.720800px;}
.ws85{word-spacing:19.836000px;}
.wsab{word-spacing:20.198880px;}
.ws86{word-spacing:20.253600px;}
.ws28{word-spacing:20.437920px;}
.ws12d{word-spacing:20.736720px;}
.wsf0{word-spacing:20.916000px;}
.wsf8{word-spacing:21.334320px;}
.ws129{word-spacing:21.513600px;}
.ws74{word-spacing:21.633120px;}
.wsa6{word-spacing:21.872160px;}
.wsa2{word-spacing:21.931920px;}
.ws11f{word-spacing:22.170960px;}
.ws3a{word-spacing:22.350240px;}
.ws29{word-spacing:22.589280px;}
.ws10f{word-spacing:22.708800px;}
.ws107{word-spacing:22.947840px;}
.ws91{word-spacing:23.067360px;}
.ws9c{word-spacing:23.306400px;}
.ws52{word-spacing:23.784480px;}
.ws7a{word-spacing:24.501600px;}
.ws8f{word-spacing:24.740640px;}
.wse3{word-spacing:24.800400px;}
.ws133{word-spacing:25.039440px;}
.wsc4{word-spacing:25.218720px;}
.ws2d{word-spacing:25.457760px;}
.ws10b{word-spacing:25.577280px;}
.wse1{word-spacing:25.637040px;}
.wse0{word-spacing:25.756560px;}
.ws10a{word-spacing:25.816320px;}
.ws99{word-spacing:26.354160px;}
.ws125{word-spacing:26.473680px;}
.ws12f{word-spacing:26.652960px;}
.wsf6{word-spacing:26.892000px;}
.wscd{word-spacing:27.370080px;}
.wsce{word-spacing:27.609120px;}
.wsa4{word-spacing:28.087200px;}
.wsc7{word-spacing:28.326240px;}
.ws104{word-spacing:28.445760px;}
.ws10e{word-spacing:28.505520px;}
.ws10d{word-spacing:28.684800px;}
.ws83{word-spacing:29.342160px;}
.ws8b{word-spacing:29.760480px;}
.ws97{word-spacing:30.477600px;}
.ws117{word-spacing:30.955680px;}
.ws57{word-spacing:31.194720px;}
.ws40{word-spacing:31.672800px;}
.ws44{word-spacing:31.911840px;}
.wsc1{word-spacing:32.449680px;}
.wsfe{word-spacing:32.688720px;}
.wsc5{word-spacing:32.987520px;}
.wse4{word-spacing:33.166800px;}
.ws11d{word-spacing:33.405840px;}
.ws8d{word-spacing:33.883920px;}
.wsc9{word-spacing:34.122960px;}
.ws3b{word-spacing:35.557200px;}
.wsc8{word-spacing:36.274320px;}
.ws98{word-spacing:36.752400px;}
.wscb{word-spacing:37.708560px;}
.ws11c{word-spacing:38.425680px;}
.ws11b{word-spacing:38.604960px;}
.ws116{word-spacing:38.903760px;}
.ws75{word-spacing:39.142800px;}
.wsca{word-spacing:39.859920px;}
.ws9a{word-spacing:40.577040px;}
.ws109{word-spacing:40.875840px;}
.ws100{word-spacing:42.011280px;}
.wsf7{word-spacing:43.206480px;}
.ws7f{word-spacing:44.879760px;}
.wsbd{word-spacing:46.074960px;}
.ws78{word-spacing:46.314000px;}
.ws77{word-spacing:46.493280px;}
.ws11e{word-spacing:50.676480px;}
.ws112{word-spacing:51.393600px;}
.wsf9{word-spacing:56.413440px;}
.ws102{word-spacing:59.281920px;}
.ws128{word-spacing:68.245920px;}
.wscc{word-spacing:77.269680px;}
.ws126{word-spacing:78.524640px;}
.ws12e{word-spacing:80.915040px;}
.wsfd{word-spacing:86.652000px;}
.ws101{word-spacing:92.448720px;}
.ws12c{word-spacing:93.882960px;}
.ws132{word-spacing:96.034320px;}
.ws127{word-spacing:96.751440px;}
.ws105{word-spacing:101.771280px;}
.ws121{word-spacing:121.910400px;}
.ws10c{word-spacing:126.272880px;}
.ws124{word-spacing:144.260640px;}
.ws12a{word-spacing:152.208720px;}
.ws108{word-spacing:153.642960px;}
.ws130{word-spacing:157.228560px;}
.ws106{word-spacing:331.488720px;}
._21{margin-left:-4.815792px;}
._4{margin-left:-3.047760px;}
._0{margin-left:-1.157760px;}
._1{width:1.152000px;}
._2{width:2.390400px;}
._6{width:4.356000px;}
._d{width:5.357520px;}
._10{width:6.394320px;}
._5{width:8.187120px;}
._7{width:10.129680px;}
._3{width:11.563200px;}
._a{width:12.669120px;}
._17{width:14.086800px;}
._c{width:16.673040px;}
._f{width:18.253440px;}
._9{width:19.720800px;}
._14{width:21.812400px;}
._b{width:24.411600px;}
._16{width:25.876080px;}
._e{width:29.760480px;}
._15{width:31.567680px;}
._1b{width:32.576400px;}
._18{width:34.840080px;}
._11{width:36.856800px;}
._13{width:40.039200px;}
._12{width:41.055120px;}
._19{width:45.297360px;}
._8{width:47.439360px;}
._1f{width:63.627840px;}
._20{width:82.180080px;}
._22{width:91.193760px;}
._1e{width:97.657920px;}
._1c{width:144.858240px;}
._1d{width:175.916880px;}
._1a{width:848.472480px;}
.fc6{color:rgb(237,107,123);}
.fc5{color:rgb(33,41,79);}
.fc4{color:transparent;}
.fc2{color:rgb(24,28,68);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(238,97,116);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:9.360000px;}
.fsc{font-size:27.360000px;}
.fsa{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:4.140000px;}
.y3a{bottom:6.840000px;}
.y24{bottom:12.780000px;}
.y37{bottom:31.140000px;}
.y2f5{bottom:42.665220px;}
.y47{bottom:54.360000px;}
.y4b{bottom:57.604500px;}
.y22{bottom:57.605220px;}
.y2f4{bottom:62.640000px;}
.y5{bottom:66.525004px;}
.y4a{bottom:77.400000px;}
.y21{bottom:77.580000px;}
.yc0{bottom:95.042160px;}
.y78{bottom:95.043600px;}
.y4{bottom:97.125005px;}
.yda{bottom:98.820000px;}
.y290{bottom:106.153920px;}
.y132{bottom:111.599640px;}
.yd9{bottom:111.600000px;}
.y77{bottom:111.601440px;}
.ybf{bottom:115.380000px;}
.y19d{bottom:125.017380px;}
.y1ea{bottom:127.069920px;}
.ybe{bottom:127.082340px;}
.y76{bottom:127.981800px;}
.y11e{bottom:127.982160px;}
.y31{bottom:128.700000px;}
.y2ed{bottom:128.982240px;}
.y28f{bottom:129.370680px;}
.y2ba{bottom:129.684420px;}
.y272{bottom:130.035780px;}
.y112{bottom:131.760000px;}
.y2f9{bottom:132.660000px;}
.y1f{bottom:139.264499px;}
.y131{bottom:143.663760px;}
.y75{bottom:144.539640px;}
.y111{bottom:148.320000px;}
.y19c{bottom:148.592700px;}
.y190{bottom:148.727160px;}
.y318{bottom:152.201880px;}
.y28e{bottom:152.946000px;}
.y2b9{bottom:153.080460px;}
.y155{bottom:153.334440px;}
.y271{bottom:153.431820px;}
.y17f{bottom:153.663120px;}
.y2f{bottom:156.779640px;}
.y1f7{bottom:156.814560px;}
.y110{bottom:160.033680px;}
.y2ec{bottom:164.449800px;}
.y74{bottom:164.700000px;}
.y1e9{bottom:165.047400px;}
.y24a{bottom:165.368880px;}
.ybd{bottom:167.584680px;}
.y18f{bottom:171.943920px;}
.y19b{bottom:171.988740px;}
.y218{bottom:172.865520px;}
.y317{bottom:175.418640px;}
.y28d{bottom:176.342040px;}
.y2b8{bottom:176.476500px;}
.y270{bottom:176.827860px;}
.y154{bottom:176.909760px;}
.y97{bottom:177.300000px;}
.y130{bottom:179.489880px;}
.y1f6{bottom:180.210600px;}
.y73{bottom:181.080000px;}
.y2eb{bottom:187.845840px;}
.y1c2{bottom:188.481240px;}
.y249{bottom:188.764920px;}
.y17e{bottom:189.309960px;}
.y13d{bottom:190.992600px;}
.yd8{bottom:191.248200px;}
.ybc{bottom:191.290680px;}
.y1fe{bottom:191.923560px;}
.y2e{bottom:192.232260px;}
.y72{bottom:193.003740px;}
.y18e{bottom:195.519240px;}
.y19a{bottom:195.564060px;}
.y20c{bottom:196.231680px;}
.y217{bottom:196.261560px;}
.y16{bottom:196.933500px;}
.y316{bottom:198.993960px;}
.y28c{bottom:199.917360px;}
.y2b7{bottom:200.051820px;}
.y26f{bottom:200.403180px;}
.y11d{bottom:202.852440px;}
.y12f{bottom:202.885920px;}
.y1f5{bottom:203.785920px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y2ea{bottom:211.241880px;}
.y1c1{bottom:211.877280px;}
.y248{bottom:212.160960px;}
.y17d{bottom:212.526720px;}
.y153{bottom:212.556600px;}
.y13c{bottom:214.388640px;}
.yd7{bottom:214.644240px;}
.ybb{bottom:214.686720px;}
.y1fd{bottom:215.319600px;}
.y18d{bottom:218.915280px;}
.y199{bottom:218.960100px;}
.y20b{bottom:219.807000px;}
.y216{bottom:219.836880px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y315{bottom:222.390000px;}
.y96{bottom:223.125840px;}
.y28b{bottom:223.313400px;}
.y2b6{bottom:223.447860px;}
.y1e8{bottom:223.552440px;}
.y26e{bottom:223.799220px;}
.y10f{bottom:226.098360px;}
.y12e{bottom:226.461240px;}
.y1f4{bottom:227.181960px;}
.y2d{bottom:227.699820px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y2e9{bottom:234.817200px;}
.y1c0{bottom:235.452600px;}
.y247{bottom:235.736280px;}
.y152{bottom:235.952640px;}
.y17c{bottom:236.102040px;}
.y13b{bottom:237.963960px;}
.yd6{bottom:238.219560px;}
.yba{bottom:238.262040px;}
.y11c{bottom:238.383720px;}
.y1fc{bottom:238.715640px;}
.y18c{bottom:242.490600px;}
.y198{bottom:242.535420px;}
.y20a{bottom:243.203040px;}
.y215{bottom:243.232920px;}
.y314{bottom:245.965320px;}
.y95{bottom:246.521880px;}
.y28a{bottom:246.888720px;}
.y2b5{bottom:247.023180px;}
.y26d{bottom:247.374540px;}
.y10e{bottom:249.673680px;}
.y12d{bottom:249.857280px;}
.y1f3{bottom:250.757280px;}
.y2e8{bottom:258.213240px;}
.y1bf{bottom:258.848640px;}
.y2d3{bottom:259.094700px;}
.y246{bottom:259.132320px;}
.y1e7{bottom:259.192260px;}
.y151{bottom:259.348680px;}
.y46{bottom:259.380000px;}
.y17b{bottom:259.498080px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y13a{bottom:261.383040px;}
.y11b{bottom:261.600480px;}
.yd5{bottom:261.615600px;}
.yb9{bottom:261.658080px;}
.y2c{bottom:263.152440px;}
.y18b{bottom:265.886640px;}
.y197{bottom:265.931460px;}
.y49{bottom:266.764680px;}
.y209{bottom:266.778360px;}
.y214{bottom:266.808240px;}
.y313{bottom:269.361360px;}
.y94{bottom:270.097200px;}
.y289{bottom:270.284760px;}
.y2b4{bottom:270.419220px;}
.y71{bottom:270.587160px;}
.y26c{bottom:270.770580px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y12c{bottom:273.432600px;}
.y1f2{bottom:274.153320px;}
.y1fb{bottom:274.362480px;}
.y2e7{bottom:281.788560px;}
.y1be{bottom:282.423960px;}
.y2d2{bottom:282.490740px;}
.y1e6{bottom:282.588300px;}
.y245{bottom:282.707640px;}
.y150{bottom:282.924000px;}
.y17a{bottom:283.073400px;}
.y139{bottom:284.958360px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y11a{bottom:285.175800px;}
.yd4{bottom:285.190920px;}
.yb8{bottom:285.233400px;}
.y10d{bottom:285.320520px;}
.y18a{bottom:289.461960px;}
.y196{bottom:289.506780px;}
.y208{bottom:290.174400px;}
.y213{bottom:290.204280px;}
.y48{bottom:290.340000px;}
.y312{bottom:292.936680px;}
.y93{bottom:293.493240px;}
.y288{bottom:293.860080px;}
.y70{bottom:293.983200px;}
.y2b3{bottom:293.994540px;}
.y26b{bottom:294.345900px;}
.y12b{bottom:296.828640px;}
.y1f1{bottom:297.728640px;}
.y1fa{bottom:297.758520px;}
.y2b{bottom:298.620000px;}
.y2e6{bottom:305.363880px;}
.y2d1{bottom:305.886780px;}
.y1bd{bottom:305.936280px;}
.y1e5{bottom:305.984340px;}
.y244{bottom:306.103680px;}
.y14f{bottom:306.320040px;}
.y179{bottom:306.469440px;}
.y138{bottom:308.354400px;}
.y10c{bottom:308.537280px;}
.y119{bottom:308.571840px;}
.yd3{bottom:308.586960px;}
.yb7{bottom:308.629440px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y189{bottom:313.037280px;}
.y195{bottom:313.082100px;}
.y207{bottom:313.749720px;}
.y212{bottom:313.779600px;}
.y311{bottom:316.332720px;}
.y92{bottom:317.068560px;}
.y287{bottom:317.256120px;}
.y6f{bottom:317.558520px;}
.y12a{bottom:320.403960px;}
.y1f0{bottom:321.124680px;}
.y1f9{bottom:321.154560px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y2d0{bottom:329.462100px;}
.y1bc{bottom:329.511600px;}
.y1e4{bottom:329.559660px;}
.y2b2{bottom:329.641380px;}
.y14e{bottom:329.895360px;}
.y26a{bottom:329.992740px;}
.y178{bottom:330.044760px;}
.y137{bottom:331.929720px;}
.y10b{bottom:332.112600px;}
.y118{bottom:332.147160px;}
.yd2{bottom:332.162280px;}
.yb6{bottom:332.204760px;}
.y2a{bottom:335.700000px;}
.y188{bottom:336.433320px;}
.y194{bottom:336.478140px;}
.y211{bottom:337.175640px;}
.y310{bottom:339.908040px;}
.y91{bottom:340.464600px;}
.y2c2{bottom:340.831440px;}
.y6e{bottom:340.954560px;}
.y2e5{bottom:341.010720px;}
.y243{bottom:341.929800px;}
.y129{bottom:343.813320px;}
.y1ef{bottom:344.700000px;}
.y1f8{bottom:344.729880px;}
.yd{bottom:348.133500px;}
.y206{bottom:349.396560px;}
.y2b1{bottom:352.858140px;}
.y286{bottom:352.902960px;}
.y1bb{bottom:352.907640px;}
.y1e3{bottom:352.955700px;}
.y269{bottom:353.209500px;}
.y14d{bottom:353.291400px;}
.y177{bottom:353.440800px;}
.y29{bottom:354.960000px;}
.y136{bottom:355.325760px;}
.y10a{bottom:355.508640px;}
.y117{bottom:355.543200px;}
.yd1{bottom:355.558320px;}
.yb5{bottom:355.600800px;}
.y187{bottom:360.008640px;}
.y193{bottom:360.053460px;}
.y210{bottom:360.750960px;}
.y30f{bottom:363.304080px;}
.y90{bottom:364.039920px;}
.y2e4{bottom:364.227480px;}
.y6d{bottom:364.529880px;}
.y242{bottom:365.146560px;}
.y128{bottom:367.388640px;}
.y205{bottom:372.613320px;}
.y285{bottom:376.299000px;}
.y2b0{bottom:376.433460px;}
.y2c1{bottom:376.478280px;}
.y1ba{bottom:376.482960px;}
.y1e2{bottom:376.531020px;}
.y268{bottom:376.784820px;}
.y14c{bottom:376.866720px;}
.y176{bottom:377.016120px;}
.y135{bottom:378.901080px;}
.y109{bottom:379.083960px;}
.y116{bottom:379.118520px;}
.yd0{bottom:379.133640px;}
.yb4{bottom:379.176120px;}
.y186{bottom:383.404680px;}
.y192{bottom:383.449500px;}
.yc{bottom:386.785499px;}
.y30e{bottom:386.879400px;}
.y8f{bottom:387.435960px;}
.y2e3{bottom:387.802800px;}
.y6c{bottom:387.925920px;}
.y45{bottom:388.302480px;}
.y241{bottom:388.721880px;}
.y127{bottom:390.784680px;}
.y1ee{bottom:393.121800px;}
.y204{bottom:396.188640px;}
.y20f{bottom:396.397800px;}
.y284{bottom:399.695040px;}
.y2af{bottom:399.829500px;}
.y1b9{bottom:399.879000px;}
.y1e1{bottom:399.927060px;}
.y267{bottom:400.180860px;}
.y14b{bottom:400.262760px;}
.y175{bottom:400.412160px;}
.y134{bottom:402.297120px;}
.y108{bottom:402.493320px;}
.y115{bottom:402.514560px;}
.ycf{bottom:402.529680px;}
.yb3{bottom:402.572160px;}
.y185{bottom:406.980000px;}
.y191{bottom:407.024820px;}
.yb{bottom:408.044999px;}
.y1ed{bottom:409.502160px;}
.y30d{bottom:410.275440px;}
.y8e{bottom:411.011280px;}
.y2e2{bottom:411.198840px;}
.y6b{bottom:411.501240px;}
.y44{bottom:411.519240px;}
.y240{bottom:412.117920px;}
.y126{bottom:414.368640px;}
.y203{bottom:419.584680px;}
.y20e{bottom:419.614560px;}
.y283{bottom:423.270360px;}
.y2ae{bottom:423.404820px;}
.y1b8{bottom:423.454320px;}
.y1e0{bottom:423.502380px;}
.y266{bottom:423.756180px;}
.y14a{bottom:423.838080px;}
.y174{bottom:423.987480px;}
.y1ec{bottom:426.060000px;}
.y107{bottom:426.068640px;}
.y114{bottom:426.089880px;}
.yce{bottom:426.105000px;}
.y30c{bottom:433.850760px;}
.y8d{bottom:434.407320px;}
.y2e1{bottom:434.774160px;}
.y6a{bottom:434.897280px;}
.y43{bottom:435.094560px;}
.y23f{bottom:435.693240px;}
.y1eb{bottom:437.220000px;}
.y125{bottom:437.764680px;}
.y133{bottom:437.943960px;}
.yb2{bottom:438.398280px;}
.y202{bottom:443.160000px;}
.y20d{bottom:443.189880px;}
.y282{bottom:446.666400px;}
.y2ad{bottom:446.800860px;}
.y1b7{bottom:446.850360px;}
.y1df{bottom:446.898420px;}
.y149{bottom:447.234120px;}
.y184{bottom:447.300000px;}
.y265{bottom:447.331500px;}
.y173{bottom:447.383520px;}
.y106{bottom:449.464680px;}
.y113{bottom:449.485920px;}
.ycd{bottom:449.501040px;}
.y30b{bottom:457.246800px;}
.y8c{bottom:457.982640px;}
.y2e0{bottom:458.170200px;}
.y69{bottom:458.472600px;}
.y42{bottom:458.490600px;}
.y2cf{bottom:459.051660px;}
.y23e{bottom:459.089280px;}
.y124{bottom:461.340000px;}
.yb1{bottom:461.615040px;}
.y281{bottom:470.241720px;}
.y2ac{bottom:470.376180px;}
.y1b6{bottom:470.425680px;}
.y1de{bottom:470.473740px;}
.y264{bottom:470.727540px;}
.y148{bottom:470.809440px;}
.y172{bottom:470.958840px;}
.y105{bottom:473.061240px;}
.ycc{bottom:473.076360px;}
.y30a{bottom:480.822120px;}
.y8b{bottom:481.378680px;}
.y2df{bottom:481.745520px;}
.y68{bottom:481.868640px;}
.y41{bottom:482.065920px;}
.y2ce{bottom:482.447700px;}
.y23d{bottom:482.664600px;}
.yb0{bottom:485.190360px;}
.y280{bottom:493.637760px;}
.y2ab{bottom:493.772220px;}
.y1b5{bottom:493.821720px;}
.y147{bottom:494.205480px;}
.y263{bottom:494.302860px;}
.y171{bottom:494.354880px;}
.y183{bottom:495.180000px;}
.y104{bottom:496.457280px;}
.ycb{bottom:496.472400px;}
.y201{bottom:500.041800px;}
.y309{bottom:504.218160px;}
.y67{bottom:505.443960px;}
.y40{bottom:505.461960px;}
.y2cd{bottom:505.843740px;}
.y23c{bottom:506.060640px;}
.yaf{bottom:508.586400px;}
.y1dd{bottom:508.989060px;}
.y200{bottom:516.599640px;}
.y8a{bottom:517.204800px;}
.y27f{bottom:517.213080px;}
.y2de{bottom:517.392360px;}
.y1b4{bottom:517.397040px;}
.y146{bottom:517.780800px;}
.y123{bottom:518.223960px;}
.y103{bottom:520.032600px;}
.yca{bottom:520.047720px;}
.y308{bottom:527.793480px;}
.y66{bottom:528.857280px;}
.y3f{bottom:529.037280px;}
.y2cc{bottom:529.419060px;}
.y1dc{bottom:529.501680px;}
.y2aa{bottom:529.598340px;}
.y23b{bottom:529.635960px;}
.y262{bottom:529.949700px;}
.y170{bottom:530.001720px;}
.yae{bottom:532.161720px;}
.y1ff{bottom:532.980000px;}
.y182{bottom:534.422160px;}
.y122{bottom:534.781800px;}
.ya{bottom:538.864499px;}
.y89{bottom:540.421560px;}
.y27e{bottom:540.609120px;}
.y1b3{bottom:540.793080px;}
.y145{bottom:541.176840px;}
.y102{bottom:543.428640px;}
.yc9{bottom:543.443760px;}
.y181{bottom:550.980000px;}
.y121{bottom:551.162160px;}
.y307{bottom:551.189520px;}
.y65{bottom:552.432600px;}
.y3e{bottom:552.433320px;}
.y2a9{bottom:552.815100px;}
.y261{bottom:553.166460px;}
.y16f{bottom:553.397760px;}
.yad{bottom:555.557760px;}
.y9{bottom:556.864499px;}
.y88{bottom:563.996880px;}
.y2c0{bottom:564.184440px;}
.y1b2{bottom:564.368400px;}
.y144{bottom:564.752160px;}
.y1db{bottom:564.954300px;}
.y180{bottom:565.200360px;}
.y23a{bottom:565.282800px;}
.y101{bottom:567.003960px;}
.yc8{bottom:567.019080px;}
.y120{bottom:567.720000px;}
.y306{bottom:574.764840px;}
.y64{bottom:575.828640px;}
.y3d{bottom:576.008640px;}
.y2a8{bottom:576.390420px;}
.y27d{bottom:576.435240px;}
.y260{bottom:576.741780px;}
.y16e{bottom:576.793800px;}
.yac{bottom:579.133080px;}
.y11f{bottom:581.753880px;}
.y87{bottom:587.392920px;}
.y2bf{bottom:587.580480px;}
.y143{bottom:588.148200px;}
.y1da{bottom:588.171060px;}
.y239{bottom:588.499560px;}
.y100{bottom:590.400000px;}
.yc7{bottom:590.415120px;}
.y305{bottom:598.160880px;}
.y63{bottom:599.403960px;}
.y3c{bottom:599.404680px;}
.y27c{bottom:599.652000px;}
.y2a7{bottom:599.786460px;}
.y25f{bottom:600.137820px;}
.y16d{bottom:600.369120px;}
.yab{bottom:602.529120px;}
.y1b1{bottom:602.883720px;}
.y86{bottom:610.968240px;}
.y2dd{bottom:611.155800px;}
.y142{bottom:611.723520px;}
.y1d9{bottom:611.746380px;}
.y238{bottom:612.074880px;}
.yc6{bottom:613.990440px;}
.y304{bottom:621.736200px;}
.y62{bottom:622.860480px;}
.y3b{bottom:622.980000px;}
.y27b{bottom:623.227320px;}
.y2a6{bottom:623.361780px;}
.y1b0{bottom:623.396340px;}
.y2be{bottom:623.406600px;}
.y25e{bottom:623.713140px;}
.y16c{bottom:623.765160px;}
.yaa{bottom:626.104440px;}
.yff{bottom:630.720000px;}
.y85{bottom:634.364280px;}
.y2dc{bottom:634.551840px;}
.y141{bottom:635.119560px;}
.y1d8{bottom:635.142420px;}
.y237{bottom:635.470920px;}
.yc5{bottom:637.386480px;}
.y303{bottom:645.132240px;}
.y8{bottom:645.510000px;}
.y61{bottom:646.435800px;}
.y27a{bottom:646.623360px;}
.y2a5{bottom:646.757820px;}
.y25d{bottom:647.109180px;}
.y16b{bottom:647.340480px;}
.y39{bottom:649.080000px;}
.ya9{bottom:649.500480px;}
.y84{bottom:657.939600px;}
.y2db{bottom:658.127160px;}
.y140{bottom:658.694880px;}
.y1d7{bottom:658.717740px;}
.y1af{bottom:658.848960px;}
.y2cb{bottom:659.008620px;}
.y236{bottom:659.046240px;}
.yc4{bottom:660.961800px;}
.y7{bottom:666.771000px;}
.y302{bottom:668.707560px;}
.y60{bottom:669.831840px;}
.y279{bottom:670.198680px;}
.y2a4{bottom:670.333140px;}
.y25c{bottom:670.684500px;}
.y16a{bottom:670.736520px;}
.ya8{bottom:673.075800px;}
.y83{bottom:681.335640px;}
.y2da{bottom:681.523200px;}
.y1ae{bottom:682.065720px;}
.y13f{bottom:682.090920px;}
.y1d6{bottom:682.113780px;}
.y2ca{bottom:682.225380px;}
.y235{bottom:682.442280px;}
.yc3{bottom:684.357840px;}
.y301{bottom:692.282880px;}
.y5f{bottom:693.407160px;}
.y278{bottom:693.594720px;}
.y2a3{bottom:693.729180px;}
.y25b{bottom:694.080540px;}
.y169{bottom:694.311840px;}
.ya7{bottom:696.471840px;}
.y82{bottom:704.910960px;}
.y1ad{bottom:705.641040px;}
.yfe{bottom:705.648960px;}
.y13e{bottom:705.666240px;}
.y1d5{bottom:705.689100px;}
.y2c9{bottom:705.800700px;}
.y234{bottom:706.017600px;}
.yc2{bottom:707.933160px;}
.y28{bottom:711.896220px;}
.y2fa{bottom:715.500000px;}
.y300{bottom:715.678920px;}
.y5e{bottom:716.803200px;}
.y277{bottom:717.170040px;}
.y2d9{bottom:717.349320px;}
.y168{bottom:717.707880px;}
.ya6{bottom:720.047160px;}
.y6{bottom:726.298500px;}
.y81{bottom:728.307000px;}
.y1ac{bottom:729.037080px;}
.yfd{bottom:729.045000px;}
.yeb{bottom:729.062280px;}
.y1d4{bottom:729.085140px;}
.y2c8{bottom:729.196740px;}
.y2a2{bottom:729.376020px;}
.y233{bottom:729.413640px;}
.y25a{bottom:729.727380px;}
.y2ff{bottom:739.254240px;}
.y5d{bottom:740.378520px;}
.y276{bottom:740.566080px;}
.y167{bottom:741.283200px;}
.ya5{bottom:743.443200px;}
.y27{bottom:743.569020px;}
.yc1{bottom:743.622480px;}
.y80{bottom:751.882320px;}
.y3{bottom:752.599495px;}
.y1ab{bottom:752.612400px;}
.yfc{bottom:752.620320px;}
.yea{bottom:752.637600px;}
.y1d3{bottom:752.660460px;}
.y2a1{bottom:752.772060px;}
.y232{bottom:752.988960px;}
.y259{bottom:753.123420px;}
.y2fe{bottom:762.650280px;}
.y5c{bottom:763.774560px;}
.y2bd{bottom:764.141400px;}
.y166{bottom:764.679240px;}
.ya4{bottom:767.018520px;}
.y7f{bottom:775.278360px;}
.y1aa{bottom:776.008440px;}
.yfb{bottom:776.016360px;}
.ye9{bottom:776.033640px;}
.y1d2{bottom:776.056500px;}
.y2a0{bottom:776.168100px;}
.y275{bottom:776.212920px;}
.y231{bottom:776.385000px;}
.y258{bottom:776.519460px;}
.y2fd{bottom:785.867040px;}
.y5b{bottom:787.349880px;}
.y2bc{bottom:787.537440px;}
.y36{bottom:787.860000px;}
.y165{bottom:788.254560px;}
.ya3{bottom:790.414560px;}
.y38{bottom:797.940000px;}
.y7e{bottom:798.853680px;}
.y1a9{bottom:799.583760px;}
.yfa{bottom:799.591680px;}
.ye8{bottom:799.608960px;}
.y1d1{bottom:799.631820px;}
.y29f{bottom:799.743420px;}
.y230{bottom:799.960320px;}
.y257{bottom:800.094780px;}
.y2fc{bottom:806.573880px;}
.y5a{bottom:810.745920px;}
.y2d8{bottom:811.112760px;}
.y164{bottom:811.650600px;}
.ya2{bottom:813.989880px;}
.y34{bottom:815.400000px;}
.y7d{bottom:822.249720px;}
.y1a8{bottom:822.979800px;}
.yf9{bottom:822.987720px;}
.ye7{bottom:823.005000px;}
.y1d0{bottom:823.027860px;}
.y29e{bottom:823.139460px;}
.y2bb{bottom:823.184280px;}
.y22f{bottom:823.356360px;}
.y256{bottom:823.490820px;}
.y2fb{bottom:827.460000px;}
.y59{bottom:834.321240px;}
.y2d7{bottom:834.508800px;}
.y163{bottom:835.225920px;}
.ya1{bottom:837.385920px;}
.y7c{bottom:845.825040px;}
.y1a7{bottom:846.555120px;}
.yf8{bottom:846.563040px;}
.ye6{bottom:846.580320px;}
.y1cf{bottom:846.603180px;}
.y29d{bottom:846.714780px;}
.y255{bottom:847.066140px;}
.y58{bottom:857.717280px;}
.y2d6{bottom:858.084120px;}
.y162{bottom:858.621960px;}
.y22e{bottom:859.182480px;}
.ya0{bottom:860.961240px;}
.y7b{bottom:869.221080px;}
.y1a6{bottom:869.951160px;}
.yf7{bottom:869.959080px;}
.ye5{bottom:869.976360px;}
.y1ce{bottom:869.999220px;}
.y29c{bottom:870.110820px;}
.y254{bottom:870.462180px;}
.y2{bottom:879.369000px;}
.y57{bottom:881.292600px;}
.y2d5{bottom:881.480160px;}
.y161{bottom:882.197280px;}
.y22d{bottom:882.399240px;}
.y9f{bottom:884.357280px;}
.y7a{bottom:892.796400px;}
.y1a5{bottom:893.526480px;}
.yf6{bottom:893.534400px;}
.ye4{bottom:893.551680px;}
.y1cd{bottom:893.574540px;}
.y29b{bottom:893.686140px;}
.y253{bottom:894.037500px;}
.y30{bottom:897.840000px;}
.y56{bottom:904.688640px;}
.y160{bottom:905.772600px;}
.y22c{bottom:905.974560px;}
.y9e{bottom:907.932600px;}
.y1a4{bottom:916.922520px;}
.yf5{bottom:916.930440px;}
.ye3{bottom:916.947720px;}
.y1cc{bottom:916.970580px;}
.y2c7{bottom:917.082180px;}
.y2d4{bottom:917.127000px;}
.y33{bottom:926.640000px;}
.y55{bottom:928.263960px;}
.y79{bottom:928.443240px;}
.y15f{bottom:929.168640px;}
.y29a{bottom:929.332980px;}
.y22b{bottom:929.370600px;}
.y252{bottom:929.684340px;}
.y321{bottom:931.277340px;}
.y9d{bottom:931.328640px;}
.y1a3{bottom:940.497840px;}
.yf4{bottom:940.505760px;}
.ye2{bottom:940.523040px;}
.y1cb{bottom:940.545900px;}
.y2c6{bottom:940.657500px;}
.y222{bottom:940.747140px;}
.y320{bottom:949.280040px;}
.y54{bottom:951.660000px;}
.y299{bottom:952.729020px;}
.y15e{bottom:952.743960px;}
.y22a{bottom:952.945920px;}
.y251{bottom:953.080380px;}
.y9c{bottom:954.903960px;}
.y1a2{bottom:963.893880px;}
.ye1{bottom:963.919080px;}
.y2c5{bottom:964.053540px;}
.y1{bottom:966.726000px;}
.y31f{bottom:970.166160px;}
.y298{bottom:976.125060px;}
.y15d{bottom:976.140000px;}
.yf3{bottom:976.152600px;}
.y274{bottom:976.169880px;}
.y1ca{bottom:976.192740px;}
.y221{bottom:976.199760px;}
.y229{bottom:976.341960px;}
.y250{bottom:976.476420px;}
.y32{bottom:976.500000px;}
.y9b{bottom:978.300000px;}
.y53{bottom:982.080000px;}
.ye0{bottom:987.494400px;}
.y2c4{bottom:987.628860px;}
.y31e{bottom:991.231560px;}
.yf2{bottom:999.548640px;}
.y273{bottom:999.565920px;}
.y1c9{bottom:999.588780px;}
.y220{bottom:999.595800px;}
.y297{bottom:999.700380px;}
.y15c{bottom:999.715320px;}
.y1a1{bottom:999.745200px;}
.y228{bottom:999.917280px;}
.y24f{bottom:1000.051740px;}
.y52{bottom:1004.056560px;}
.ydf{bottom:1010.890440px;}
.y31d{bottom:1012.296960px;}
.y9a{bottom:1018.620000px;}
.yf1{bottom:1022.944680px;}
.y1a0{bottom:1022.961960px;}
.y1c8{bottom:1022.984820px;}
.y21f{bottom:1022.991840px;}
.y296{bottom:1023.096420px;}
.y15b{bottom:1023.111360px;}
.y2f3{bottom:1023.245820px;}
.y2c3{bottom:1023.275700px;}
.y227{bottom:1023.313320px;}
.y24e{bottom:1023.447780px;}
.y51{bottom:1027.452600px;}
.y31c{bottom:1033.183080px;}
.yde{bottom:1034.465760px;}
.yf0{bottom:1046.532600px;}
.y19f{bottom:1046.537280px;}
.y1c7{bottom:1046.560140px;}
.y21e{bottom:1046.567160px;}
.y2f2{bottom:1046.641860px;}
.y295{bottom:1046.671740px;}
.y15a{bottom:1046.686680px;}
.y226{bottom:1046.888640px;}
.y24d{bottom:1047.023100px;}
.y50{bottom:1050.848640px;}
.y31b{bottom:1054.248480px;}
.ydd{bottom:1057.861800px;}
.y2f8{bottom:1069.566120px;}
.yef{bottom:1069.928640px;}
.y19e{bottom:1069.933320px;}
.y1c6{bottom:1069.956180px;}
.y21d{bottom:1069.963200px;}
.y2f1{bottom:1070.037900px;}
.y294{bottom:1070.067780px;}
.y159{bottom:1070.082720px;}
.y225{bottom:1070.284680px;}
.y24c{bottom:1070.419140px;}
.y4f{bottom:1074.423960px;}
.y31a{bottom:1075.313880px;}
.ydc{bottom:1081.437120px;}
.yee{bottom:1093.503960px;}
.y99{bottom:1093.508640px;}
.y1c5{bottom:1093.531500px;}
.y21c{bottom:1093.538520px;}
.y2f0{bottom:1093.613220px;}
.y293{bottom:1093.643100px;}
.y158{bottom:1093.658040px;}
.y219{bottom:1093.687920px;}
.y224{bottom:1093.860000px;}
.y24b{bottom:1093.994460px;}
.y319{bottom:1096.200000px;}
.y4e{bottom:1097.820000px;}
.y26{bottom:1105.012440px;}
.y2f7{bottom:1105.018740px;}
.y98{bottom:1116.904680px;}
.y1c4{bottom:1116.927540px;}
.y21b{bottom:1116.934560px;}
.yed{bottom:1116.964440px;}
.y2ef{bottom:1117.009260px;}
.y292{bottom:1117.039140px;}
.y157{bottom:1117.054080px;}
.ydb{bottom:1117.083960px;}
.y223{bottom:1134.180000px;}
.y4d{bottom:1137.420000px;}
.y25{bottom:1140.480000px;}
.y1c3{bottom:1140.502860px;}
.y21a{bottom:1140.509880px;}
.yec{bottom:1140.539760px;}
.y2ee{bottom:1140.584580px;}
.y291{bottom:1140.614460px;}
.y156{bottom:1140.629400px;}
.y2f6{bottom:1140.665580px;}
.y23{bottom:1183.320000px;}
.y4c{bottom:1188.900000px;}
.y20{bottom:1193.760000px;}
.h19{height:8.359102px;}
.hf{height:16.740000px;}
.ha{height:23.760000px;}
.h1c{height:24.434297px;}
.h13{height:26.100000px;}
.h7{height:32.130000px;}
.hb{height:34.732800px;}
.h1d{height:37.294453px;}
.h10{height:38.880000px;}
.h12{height:41.317383px;}
.h2d{height:43.027200px;}
.h11{height:45.540000px;}
.h16{height:45.724570px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2b{height:48.225586px;}
.h9{height:53.369648px;}
.h2a{height:54.913382px;}
.h1f{height:55.079702px;}
.h2{height:55.080000px;}
.h17{height:55.089844px;}
.h29{height:55.137302px;}
.h21{height:55.344662px;}
.h25{height:55.347542px;}
.h1a{height:55.360502px;}
.h20{height:55.432502px;}
.h28{height:55.501622px;}
.h27{height:55.510262px;}
.h23{height:55.517462px;}
.h1b{height:55.533302px;}
.h18{height:55.536182px;}
.h24{height:55.549142px;}
.h22{height:55.552022px;}
.h26{height:55.567862px;}
.h14{height:60.652800px;}
.hc{height:64.300781px;}
.h1e{height:64.455117px;}
.h15{height:70.560000px;}
.h5{height:78.030000px;}
.he{height:103.680000px;}
.h4{height:119.055004px;}
.hd{height:161.818500px;}
.h2c{height:729.358500px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:118.260000px;}
.w8{width:244.438500px;}
.w4{width:262.800000px;}
.wa{width:271.080000px;}
.w7{width:307.260000px;}
.w9{width:326.160000px;}
.wb{width:569.341500px;}
.w5{width:627.660000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:10.800000px;}
.x6{left:53.280000px;}
.x17{left:74.340000px;}
.x15{left:96.300000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x13{left:116.460000px;}
.x14{left:127.620000px;}
.xd{left:129.060000px;}
.xf{left:139.860000px;}
.x1e{left:141.840000px;}
.x11{left:150.120000px;}
.x16{left:153.900000px;}
.x8{left:158.400000px;}
.x12{left:160.920000px;}
.x18{left:170.100000px;}
.x4{left:203.484001px;}
.x20{left:205.380000px;}
.x1f{left:212.591880px;}
.x21{left:216.180000px;}
.x22{left:230.580000px;}
.xc{left:436.500000px;}
.x9{left:446.400000px;}
.x3{left:454.959000px;}
.x1a{left:459.180000px;}
.x1b{left:480.420000px;}
.x10{left:497.700000px;}
.x5{left:509.940000px;}
.x7{left:523.800000px;}
.x1c{left:622.797480px;}
.x1d{left:765.173520px;}
.xb{left:777.600000px;}
.xa{left:781.563960px;}
.x19{left:786.609360px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.501120pt;}
.ls5a{letter-spacing:-0.743680pt;}
.ls40{letter-spacing:-0.637440pt;}
.ls17{letter-spacing:-0.600320pt;}
.ls3f{letter-spacing:-0.584320pt;}
.ls4b{letter-spacing:-0.531200pt;}
.ls32{letter-spacing:-0.408320pt;}
.ls59{letter-spacing:-0.371840pt;}
.ls7a{letter-spacing:-0.318720pt;}
.lsb{letter-spacing:-0.299520pt;}
.ls60{letter-spacing:-0.296960pt;}
.ls1c{letter-spacing:-0.265600pt;}
.ls48{letter-spacing:-0.259840pt;}
.ls1d{letter-spacing:-0.212480pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls49{letter-spacing:-0.185600pt;}
.ls5b{letter-spacing:-0.159360pt;}
.ls20{letter-spacing:-0.148480pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.111360pt;}
.ls1a{letter-spacing:-0.106240pt;}
.ls30{letter-spacing:-0.074880pt;}
.ls5f{letter-spacing:-0.074240pt;}
.ls18{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.053120pt;}
.ls41{letter-spacing:0.069120pt;}
.ls11{letter-spacing:0.071680pt;}
.ls50{letter-spacing:0.074880pt;}
.ls1b{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.144000pt;}
.ls2f{letter-spacing:0.149760pt;}
.lsd{letter-spacing:0.159360pt;}
.ls2{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.168960pt;}
.ls42{letter-spacing:0.170240pt;}
.ls63{letter-spacing:0.175296pt;}
.ls47{letter-spacing:0.185600pt;}
.ls19{letter-spacing:0.192000pt;}
.ls66{letter-spacing:0.196544pt;}
.ls78{letter-spacing:0.212480pt;}
.ls62{letter-spacing:0.217792pt;}
.ls15{letter-spacing:0.222720pt;}
.ls25{letter-spacing:0.223104pt;}
.ls4{letter-spacing:0.244480pt;}
.ls9{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.259840pt;}
.ls5{letter-spacing:0.265600pt;}
.ls3a{letter-spacing:0.281536pt;}
.ls77{letter-spacing:0.292160pt;}
.ls16{letter-spacing:0.296960pt;}
.ls7{letter-spacing:0.300160pt;}
.ls45{letter-spacing:0.300672pt;}
.ls2e{letter-spacing:0.318720pt;}
.ls31{letter-spacing:0.371840pt;}
.ls4c{letter-spacing:0.393088pt;}
.ls4e{letter-spacing:0.424960pt;}
.ls69{letter-spacing:0.478080pt;}
.ls3d{letter-spacing:0.519680pt;}
.ls4a{letter-spacing:0.556800pt;}
.ls44{letter-spacing:0.593920pt;}
.ls72{letter-spacing:0.637440pt;}
.ls6f{letter-spacing:0.796800pt;}
.ls24{letter-spacing:0.903040pt;}
.ls5c{letter-spacing:0.928000pt;}
.ls6e{letter-spacing:0.956160pt;}
.ls5e{letter-spacing:1.224960pt;}
.ls3{letter-spacing:1.540480pt;}
.ls2b{letter-spacing:2.177920pt;}
.ls3c{letter-spacing:2.604800pt;}
.ls26{letter-spacing:2.791680pt;}
.ls3b{letter-spacing:2.815360pt;}
.ls2c{letter-spacing:3.452800pt;}
.ls2d{letter-spacing:3.468736pt;}
.ls23{letter-spacing:4.090240pt;}
.ls27{letter-spacing:4.727680pt;}
.ls36{letter-spacing:5.365120pt;}
.ls4f{letter-spacing:6.002560pt;}
.ls53{letter-spacing:6.693120pt;}
.ls52{letter-spacing:7.330560pt;}
.ls12{letter-spacing:7.968000pt;}
.ls38{letter-spacing:8.605440pt;}
.ls4d{letter-spacing:9.242880pt;}
.ls6a{letter-spacing:9.843136pt;}
.ls54{letter-spacing:9.880320pt;}
.ls46{letter-spacing:9.912192pt;}
.ls14{letter-spacing:9.922816pt;}
.ls6b{letter-spacing:10.517760pt;}
.ls43{letter-spacing:10.839040pt;}
.ls10{letter-spacing:11.155200pt;}
.ls75{letter-spacing:12.430080pt;}
.ls55{letter-spacing:13.067520pt;}
.ls3e{letter-spacing:13.704960pt;}
.ls35{letter-spacing:14.342400pt;}
.ls57{letter-spacing:14.979840pt;}
.ls2a{letter-spacing:15.617280pt;}
.ls33{letter-spacing:15.659776pt;}
.ls22{letter-spacing:16.892160pt;}
.ls28{letter-spacing:17.854720pt;}
.ls29{letter-spacing:17.865856pt;}
.ls71{letter-spacing:18.804480pt;}
.ls37{letter-spacing:19.495040pt;}
.ls70{letter-spacing:20.769920pt;}
.ls51{letter-spacing:22.682240pt;}
.ls73{letter-spacing:23.957120pt;}
.ls39{letter-spacing:25.232000pt;}
.ls6c{letter-spacing:27.781760pt;}
.ls21{letter-spacing:28.454400pt;}
.ls56{letter-spacing:30.331520pt;}
.ls34{letter-spacing:36.121600pt;}
.lsf{letter-spacing:40.448000pt;}
.ls58{letter-spacing:41.221120pt;}
.ls6d{letter-spacing:45.045760pt;}
.ls64{letter-spacing:52.748160pt;}
.ls76{letter-spacing:61.088000pt;}
.ls5d{letter-spacing:65.219840pt;}
.ls79{letter-spacing:81.061120pt;}
.ls61{letter-spacing:82.176640pt;}
.ls74{letter-spacing:85.363840pt;}
.ls67{letter-spacing:112.242560pt;}
.ls68{letter-spacing:136.571520pt;}
.ls65{letter-spacing:207.008640pt;}
.ws68{word-spacing:-19.618560pt;}
.wsfb{word-spacing:-19.393920pt;}
.ws1b{word-spacing:-16.832000pt;}
.ws1a{word-spacing:-16.576000pt;}
.ws113{word-spacing:-14.448640pt;}
.wsc3{word-spacing:-14.183040pt;}
.wsfc{word-spacing:-14.129920pt;}
.ws21{word-spacing:-14.076800pt;}
.ws5{word-spacing:-13.970560pt;}
.ws1d{word-spacing:-13.917440pt;}
.ws1c{word-spacing:-13.864320pt;}
.ws1f{word-spacing:-13.811200pt;}
.ws6{word-spacing:-13.758080pt;}
.ws69{word-spacing:-13.704960pt;}
.wsd9{word-spacing:-13.651840pt;}
.ws20{word-spacing:-13.598720pt;}
.ws1e{word-spacing:-13.545600pt;}
.ws137{word-spacing:-13.439360pt;}
.wsd8{word-spacing:-13.280000pt;}
.ws92{word-spacing:-13.226880pt;}
.ws139{word-spacing:-12.430080pt;}
.ws13c{word-spacing:-12.376960pt;}
.ws136{word-spacing:-12.323840pt;}
.ws4{word-spacing:-12.288000pt;}
.ws13b{word-spacing:-12.217600pt;}
.ws138{word-spacing:-12.111360pt;}
.ws13a{word-spacing:-12.058240pt;}
.ws2{word-spacing:-11.344000pt;}
.ws1{word-spacing:-11.328000pt;}
.ws3{word-spacing:-11.184000pt;}
.ws19{word-spacing:-10.291200pt;}
.wsae{word-spacing:-10.208000pt;}
.ws93{word-spacing:-9.911040pt;}
.wsf1{word-spacing:-9.873920pt;}
.ws22{word-spacing:-9.651200pt;}
.wsf2{word-spacing:-9.576960pt;}
.ws23{word-spacing:-9.539840pt;}
.ws24{word-spacing:-9.502720pt;}
.wsad{word-spacing:-9.465600pt;}
.wsf3{word-spacing:-9.354240pt;}
.ws6a{word-spacing:-9.242880pt;}
.ws94{word-spacing:-9.054720pt;}
.ws95{word-spacing:-6.493440pt;}
.wsd0{word-spacing:-3.489280pt;}
.ws30{word-spacing:-3.187200pt;}
.ws9e{word-spacing:-2.974720pt;}
.wsd1{word-spacing:-2.821120pt;}
.ws54{word-spacing:-2.815360pt;}
.ws119{word-spacing:-2.709120pt;}
.ws5c{word-spacing:-2.549760pt;}
.ws4f{word-spacing:-2.337280pt;}
.ws63{word-spacing:-2.227200pt;}
.wsb6{word-spacing:-2.190080pt;}
.wsd7{word-spacing:-2.177920pt;}
.ws120{word-spacing:-2.071680pt;}
.ws53{word-spacing:-1.912320pt;}
.wsb8{word-spacing:-1.856000pt;}
.ws134{word-spacing:-1.752960pt;}
.ws38{word-spacing:-1.699840pt;}
.wsba{word-spacing:-1.646720pt;}
.wsa5{word-spacing:-1.434240pt;}
.ws73{word-spacing:-1.381120pt;}
.ws42{word-spacing:-1.274880pt;}
.wsb7{word-spacing:-1.224960pt;}
.ws58{word-spacing:-1.062400pt;}
.ws72{word-spacing:-1.009280pt;}
.ws6f{word-spacing:-0.903040pt;}
.ws4c{word-spacing:-0.890880pt;}
.ws8{word-spacing:-0.686080pt;}
.wsa{word-spacing:-0.640000pt;}
.ws81{word-spacing:-0.637440pt;}
.wsb3{word-spacing:-0.556800pt;}
.wsb9{word-spacing:-0.519680pt;}
.ws13{word-spacing:-0.424960pt;}
.ws62{word-spacing:-0.334080pt;}
.wsd2{word-spacing:-0.299520pt;}
.ws66{word-spacing:-0.296960pt;}
.ws41{word-spacing:-0.265600pt;}
.ws45{word-spacing:-0.259840pt;}
.wsb5{word-spacing:-0.222720pt;}
.ws13d{word-spacing:-0.212480pt;}
.wsaf{word-spacing:-0.185600pt;}
.ws12b{word-spacing:-0.159360pt;}
.ws6d{word-spacing:-0.149760pt;}
.wsf4{word-spacing:-0.144000pt;}
.wsde{word-spacing:-0.106240pt;}
.wse{word-spacing:-0.053120pt;}
.ws7{word-spacing:-0.048000pt;}
.ws87{word-spacing:-0.037120pt;}
.ws0{word-spacing:0.000000pt;}
.ws70{word-spacing:0.053120pt;}
.ws67{word-spacing:0.074240pt;}
.ws2f{word-spacing:0.106240pt;}
.ws4a{word-spacing:0.111360pt;}
.wsb4{word-spacing:0.148480pt;}
.wsc{word-spacing:0.149760pt;}
.wse8{word-spacing:0.159360pt;}
.ws18{word-spacing:0.212480pt;}
.wsb1{word-spacing:0.259840pt;}
.ws4e{word-spacing:0.265600pt;}
.wsb0{word-spacing:0.334080pt;}
.ws84{word-spacing:0.371200pt;}
.ws8a{word-spacing:0.371840pt;}
.ws9{word-spacing:0.384000pt;}
.wsb{word-spacing:0.528000pt;}
.ws7c{word-spacing:0.531200pt;}
.wsd6{word-spacing:0.584320pt;}
.ws25{word-spacing:0.600320pt;}
.ws8e{word-spacing:0.637440pt;}
.wsb2{word-spacing:0.705280pt;}
.wsdc{word-spacing:0.743680pt;}
.ws8c{word-spacing:0.849920pt;}
.wsfa{word-spacing:0.903040pt;}
.wsed{word-spacing:0.965120pt;}
.wsee{word-spacing:1.002240pt;}
.ws27{word-spacing:1.009280pt;}
.ws122{word-spacing:1.115520pt;}
.wsd4{word-spacing:1.168640pt;}
.ws71{word-spacing:1.274880pt;}
.wsd{word-spacing:1.487360pt;}
.wsd5{word-spacing:1.540480pt;}
.ws49{word-spacing:1.596160pt;}
.ws4b{word-spacing:1.633280pt;}
.ws10{word-spacing:1.912320pt;}
.ws17{word-spacing:2.124800pt;}
.wsef{word-spacing:2.177920pt;}
.ws123{word-spacing:2.231040pt;}
.wsac{word-spacing:2.284160pt;}
.ws48{word-spacing:2.301440pt;}
.wsdf{word-spacing:2.443520pt;}
.wsda{word-spacing:2.549760pt;}
.ws5a{word-spacing:2.602880pt;}
.wsf{word-spacing:2.815360pt;}
.ws79{word-spacing:2.868480pt;}
.ws111{word-spacing:2.921600pt;}
.ws118{word-spacing:3.080960pt;}
.ws9b{word-spacing:3.134080pt;}
.ws11{word-spacing:3.240320pt;}
.ws12{word-spacing:3.452800pt;}
.wse2{word-spacing:3.505920pt;}
.wsbf{word-spacing:3.563520pt;}
.ws80{word-spacing:3.612160pt;}
.ws5f{word-spacing:3.877760pt;}
.wsbe{word-spacing:4.046080pt;}
.ws50{word-spacing:4.090240pt;}
.ws61{word-spacing:4.143360pt;}
.ws60{word-spacing:4.196480pt;}
.wsf5{word-spacing:4.231680pt;}
.wse6{word-spacing:4.249600pt;}
.ws4d{word-spacing:4.515200pt;}
.ws16{word-spacing:4.727680pt;}
.ws82{word-spacing:4.780800pt;}
.ws47{word-spacing:4.862720pt;}
.wse7{word-spacing:4.887040pt;}
.ws15{word-spacing:5.152640pt;}
.ws14{word-spacing:5.365120pt;}
.wsa0{word-spacing:5.418240pt;}
.ws9f{word-spacing:5.524480pt;}
.ws3e{word-spacing:5.790080pt;}
.ws6b{word-spacing:6.002560pt;}
.ws114{word-spacing:6.055680pt;}
.ws39{word-spacing:6.427520pt;}
.ws2e{word-spacing:6.640000pt;}
.ws5e{word-spacing:6.693120pt;}
.wsdb{word-spacing:6.746240pt;}
.wsdd{word-spacing:6.799360pt;}
.ws36{word-spacing:7.064960pt;}
.ws35{word-spacing:7.277440pt;}
.wsff{word-spacing:7.436800pt;}
.wscf{word-spacing:7.596160pt;}
.ws3c{word-spacing:7.702400pt;}
.ws2b{word-spacing:7.914880pt;}
.wsa1{word-spacing:7.968000pt;}
.wse5{word-spacing:8.074240pt;}
.wsa9{word-spacing:8.339840pt;}
.wsa3{word-spacing:8.552320pt;}
.wsbb{word-spacing:8.711680pt;}
.ws103{word-spacing:8.817920pt;}
.ws5b{word-spacing:8.977280pt;}
.ws3f{word-spacing:9.189760pt;}
.ws11a{word-spacing:9.455360pt;}
.wsc6{word-spacing:9.614720pt;}
.wsc2{word-spacing:9.827200pt;}
.ws59{word-spacing:9.986560pt;}
.ws115{word-spacing:10.092800pt;}
.ws89{word-spacing:10.252160pt;}
.ws51{word-spacing:10.464640pt;}
.ws46{word-spacing:10.579200pt;}
.ws2c{word-spacing:10.889600pt;}
.ws3d{word-spacing:11.102080pt;}
.wsea{word-spacing:11.261440pt;}
.wseb{word-spacing:11.420800pt;}
.ws32{word-spacing:11.527040pt;}
.wsd3{word-spacing:11.739520pt;}
.wsec{word-spacing:11.898880pt;}
.ws55{word-spacing:12.164480pt;}
.wsc0{word-spacing:12.376960pt;}
.ws135{word-spacing:12.642560pt;}
.ws110{word-spacing:12.801920pt;}
.ws2a{word-spacing:13.014400pt;}
.ws96{word-spacing:13.067520pt;}
.ws7d{word-spacing:13.173760pt;}
.ws7e{word-spacing:13.280000pt;}
.ws56{word-spacing:13.439360pt;}
.wsaa{word-spacing:13.651840pt;}
.wsa8{word-spacing:13.808640pt;}
.wse9{word-spacing:13.811200pt;}
.wsa7{word-spacing:14.076800pt;}
.ws7b{word-spacing:14.289280pt;}
.ws9d{word-spacing:14.448640pt;}
.ws5d{word-spacing:14.714240pt;}
.ws37{word-spacing:14.926720pt;}
.ws131{word-spacing:15.192320pt;}
.ws6c{word-spacing:15.404800pt;}
.ws26{word-spacing:15.617280pt;}
.wsbc{word-spacing:15.670400pt;}
.ws64{word-spacing:15.701760pt;}
.ws65{word-spacing:15.738880pt;}
.ws88{word-spacing:15.776640pt;}
.ws90{word-spacing:16.042240pt;}
.ws33{word-spacing:16.254720pt;}
.ws34{word-spacing:16.520320pt;}
.ws6e{word-spacing:16.679680pt;}
.ws43{word-spacing:16.892160pt;}
.ws76{word-spacing:17.317120pt;}
.ws31{word-spacing:17.529600pt;}
.ws85{word-spacing:17.632000pt;}
.wsab{word-spacing:17.954560pt;}
.ws86{word-spacing:18.003200pt;}
.ws28{word-spacing:18.167040pt;}
.ws12d{word-spacing:18.432640pt;}
.wsf0{word-spacing:18.592000pt;}
.wsf8{word-spacing:18.963840pt;}
.ws129{word-spacing:19.123200pt;}
.ws74{word-spacing:19.229440pt;}
.wsa6{word-spacing:19.441920pt;}
.wsa2{word-spacing:19.495040pt;}
.ws11f{word-spacing:19.707520pt;}
.ws3a{word-spacing:19.866880pt;}
.ws29{word-spacing:20.079360pt;}
.ws10f{word-spacing:20.185600pt;}
.ws107{word-spacing:20.398080pt;}
.ws91{word-spacing:20.504320pt;}
.ws9c{word-spacing:20.716800pt;}
.ws52{word-spacing:21.141760pt;}
.ws7a{word-spacing:21.779200pt;}
.ws8f{word-spacing:21.991680pt;}
.wse3{word-spacing:22.044800pt;}
.ws133{word-spacing:22.257280pt;}
.wsc4{word-spacing:22.416640pt;}
.ws2d{word-spacing:22.629120pt;}
.ws10b{word-spacing:22.735360pt;}
.wse1{word-spacing:22.788480pt;}
.wse0{word-spacing:22.894720pt;}
.ws10a{word-spacing:22.947840pt;}
.ws99{word-spacing:23.425920pt;}
.ws125{word-spacing:23.532160pt;}
.ws12f{word-spacing:23.691520pt;}
.wsf6{word-spacing:23.904000pt;}
.wscd{word-spacing:24.328960pt;}
.wsce{word-spacing:24.541440pt;}
.wsa4{word-spacing:24.966400pt;}
.wsc7{word-spacing:25.178880pt;}
.ws104{word-spacing:25.285120pt;}
.ws10e{word-spacing:25.338240pt;}
.ws10d{word-spacing:25.497600pt;}
.ws83{word-spacing:26.081920pt;}
.ws8b{word-spacing:26.453760pt;}
.ws97{word-spacing:27.091200pt;}
.ws117{word-spacing:27.516160pt;}
.ws57{word-spacing:27.728640pt;}
.ws40{word-spacing:28.153600pt;}
.ws44{word-spacing:28.366080pt;}
.wsc1{word-spacing:28.844160pt;}
.wsfe{word-spacing:29.056640pt;}
.wsc5{word-spacing:29.322240pt;}
.wse4{word-spacing:29.481600pt;}
.ws11d{word-spacing:29.694080pt;}
.ws8d{word-spacing:30.119040pt;}
.wsc9{word-spacing:30.331520pt;}
.ws3b{word-spacing:31.606400pt;}
.wsc8{word-spacing:32.243840pt;}
.ws98{word-spacing:32.668800pt;}
.wscb{word-spacing:33.518720pt;}
.ws11c{word-spacing:34.156160pt;}
.ws11b{word-spacing:34.315520pt;}
.ws116{word-spacing:34.581120pt;}
.ws75{word-spacing:34.793600pt;}
.wsca{word-spacing:35.431040pt;}
.ws9a{word-spacing:36.068480pt;}
.ws109{word-spacing:36.334080pt;}
.ws100{word-spacing:37.343360pt;}
.wsf7{word-spacing:38.405760pt;}
.ws7f{word-spacing:39.893120pt;}
.wsbd{word-spacing:40.955520pt;}
.ws78{word-spacing:41.168000pt;}
.ws77{word-spacing:41.327360pt;}
.ws11e{word-spacing:45.045760pt;}
.ws112{word-spacing:45.683200pt;}
.wsf9{word-spacing:50.145280pt;}
.ws102{word-spacing:52.695040pt;}
.ws128{word-spacing:60.663040pt;}
.wscc{word-spacing:68.684160pt;}
.ws126{word-spacing:69.799680pt;}
.ws12e{word-spacing:71.924480pt;}
.wsfd{word-spacing:77.024000pt;}
.ws101{word-spacing:82.176640pt;}
.ws12c{word-spacing:83.451520pt;}
.ws132{word-spacing:85.363840pt;}
.ws127{word-spacing:86.001280pt;}
.ws105{word-spacing:90.463360pt;}
.ws121{word-spacing:108.364800pt;}
.ws10c{word-spacing:112.242560pt;}
.ws124{word-spacing:128.231680pt;}
.ws12a{word-spacing:135.296640pt;}
.ws108{word-spacing:136.571520pt;}
.ws130{word-spacing:139.758720pt;}
.ws106{word-spacing:294.656640pt;}
._21{margin-left:-4.280704pt;}
._4{margin-left:-2.709120pt;}
._0{margin-left:-1.029120pt;}
._1{width:1.024000pt;}
._2{width:2.124800pt;}
._6{width:3.872000pt;}
._d{width:4.762240pt;}
._10{width:5.683840pt;}
._5{width:7.277440pt;}
._7{width:9.004160pt;}
._3{width:10.278400pt;}
._a{width:11.261440pt;}
._17{width:12.521600pt;}
._c{width:14.820480pt;}
._f{width:16.225280pt;}
._9{width:17.529600pt;}
._14{width:19.388800pt;}
._b{width:21.699200pt;}
._16{width:23.000960pt;}
._e{width:26.453760pt;}
._15{width:28.060160pt;}
._1b{width:28.956800pt;}
._18{width:30.968960pt;}
._11{width:32.761600pt;}
._13{width:35.590400pt;}
._12{width:36.493440pt;}
._19{width:40.264320pt;}
._8{width:42.168320pt;}
._1f{width:56.558080pt;}
._20{width:73.048960pt;}
._22{width:81.061120pt;}
._1e{width:86.807040pt;}
._1c{width:128.762880pt;}
._1d{width:156.370560pt;}
._1a{width:754.197760pt;}
.fsb{font-size:8.320000pt;}
.fsc{font-size:24.320000pt;}
.fsa{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:3.680000pt;}
.y3a{bottom:6.080000pt;}
.y24{bottom:11.360000pt;}
.y37{bottom:27.680000pt;}
.y2f5{bottom:37.924640pt;}
.y47{bottom:48.320000pt;}
.y4b{bottom:51.204000pt;}
.y22{bottom:51.204640pt;}
.y2f4{bottom:55.680000pt;}
.y5{bottom:59.133337pt;}
.y4a{bottom:68.800000pt;}
.y21{bottom:68.960000pt;}
.yc0{bottom:84.481920pt;}
.y78{bottom:84.483200pt;}
.y4{bottom:86.333337pt;}
.yda{bottom:87.840000pt;}
.y290{bottom:94.359040pt;}
.y132{bottom:99.199680pt;}
.yd9{bottom:99.200000pt;}
.y77{bottom:99.201280pt;}
.ybf{bottom:102.560000pt;}
.y19d{bottom:111.126560pt;}
.y1ea{bottom:112.951040pt;}
.ybe{bottom:112.962080pt;}
.y76{bottom:113.761600pt;}
.y11e{bottom:113.761920pt;}
.y31{bottom:114.400000pt;}
.y2ed{bottom:114.650880pt;}
.y28f{bottom:114.996160pt;}
.y2ba{bottom:115.275040pt;}
.y272{bottom:115.587360pt;}
.y112{bottom:117.120000pt;}
.y2f9{bottom:117.920000pt;}
.y1f{bottom:123.790666pt;}
.y131{bottom:127.701120pt;}
.y75{bottom:128.479680pt;}
.y111{bottom:131.840000pt;}
.y19c{bottom:132.082400pt;}
.y190{bottom:132.201920pt;}
.y318{bottom:135.290560pt;}
.y28e{bottom:135.952000pt;}
.y2b9{bottom:136.071520pt;}
.y155{bottom:136.297280pt;}
.y271{bottom:136.383840pt;}
.y17f{bottom:136.589440pt;}
.y2f{bottom:139.359680pt;}
.y1f7{bottom:139.390720pt;}
.y110{bottom:142.252160pt;}
.y2ec{bottom:146.177600pt;}
.y74{bottom:146.400000pt;}
.y1e9{bottom:146.708800pt;}
.y24a{bottom:146.994560pt;}
.ybd{bottom:148.964160pt;}
.y18f{bottom:152.839040pt;}
.y19b{bottom:152.878880pt;}
.y218{bottom:153.658240pt;}
.y317{bottom:155.927680pt;}
.y28d{bottom:156.748480pt;}
.y2b8{bottom:156.868000pt;}
.y270{bottom:157.180320pt;}
.y154{bottom:157.253120pt;}
.y97{bottom:157.600000pt;}
.y130{bottom:159.546560pt;}
.y1f6{bottom:160.187200pt;}
.y73{bottom:160.960000pt;}
.y2eb{bottom:166.974080pt;}
.y1c2{bottom:167.538880pt;}
.y249{bottom:167.791040pt;}
.y17e{bottom:168.275520pt;}
.y13d{bottom:169.771200pt;}
.yd8{bottom:169.998400pt;}
.ybc{bottom:170.036160pt;}
.y1fe{bottom:170.598720pt;}
.y2e{bottom:170.873120pt;}
.y72{bottom:171.558880pt;}
.y18e{bottom:173.794880pt;}
.y19a{bottom:173.834720pt;}
.y20c{bottom:174.428160pt;}
.y217{bottom:174.454720pt;}
.y16{bottom:175.052000pt;}
.y316{bottom:176.883520pt;}
.y28c{bottom:177.704320pt;}
.y2b7{bottom:177.823840pt;}
.y26f{bottom:178.136160pt;}
.y11d{bottom:180.313280pt;}
.y12f{bottom:180.343040pt;}
.y1f5{bottom:181.143040pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y2ea{bottom:187.770560pt;}
.y1c1{bottom:188.335360pt;}
.y248{bottom:188.587520pt;}
.y17d{bottom:188.912640pt;}
.y153{bottom:188.939200pt;}
.y13c{bottom:190.567680pt;}
.yd7{bottom:190.794880pt;}
.ybb{bottom:190.832640pt;}
.y1fd{bottom:191.395200pt;}
.y18d{bottom:194.591360pt;}
.y199{bottom:194.631200pt;}
.y20b{bottom:195.384000pt;}
.y216{bottom:195.410560pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y315{bottom:197.680000pt;}
.y96{bottom:198.334080pt;}
.y28b{bottom:198.500800pt;}
.y2b6{bottom:198.620320pt;}
.y1e8{bottom:198.713280pt;}
.y26e{bottom:198.932640pt;}
.y10f{bottom:200.976320pt;}
.y12e{bottom:201.298880pt;}
.y1f4{bottom:201.939520pt;}
.y2d{bottom:202.399840pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y2e9{bottom:208.726400pt;}
.y1c0{bottom:209.291200pt;}
.y247{bottom:209.543360pt;}
.y152{bottom:209.735680pt;}
.y17c{bottom:209.868480pt;}
.y13b{bottom:211.523520pt;}
.yd6{bottom:211.750720pt;}
.yba{bottom:211.788480pt;}
.y11c{bottom:211.896640pt;}
.y1fc{bottom:212.191680pt;}
.y18c{bottom:215.547200pt;}
.y198{bottom:215.587040pt;}
.y20a{bottom:216.180480pt;}
.y215{bottom:216.207040pt;}
.y314{bottom:218.635840pt;}
.y95{bottom:219.130560pt;}
.y28a{bottom:219.456640pt;}
.y2b5{bottom:219.576160pt;}
.y26d{bottom:219.888480pt;}
.y10e{bottom:221.932160pt;}
.y12d{bottom:222.095360pt;}
.y1f3{bottom:222.895360pt;}
.y2e8{bottom:229.522880pt;}
.y1bf{bottom:230.087680pt;}
.y2d3{bottom:230.306400pt;}
.y246{bottom:230.339840pt;}
.y1e7{bottom:230.393120pt;}
.y151{bottom:230.532160pt;}
.y46{bottom:230.560000pt;}
.y17b{bottom:230.664960pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y13a{bottom:232.340480pt;}
.y11b{bottom:232.533760pt;}
.yd5{bottom:232.547200pt;}
.yb9{bottom:232.584960pt;}
.y2c{bottom:233.913280pt;}
.y18b{bottom:236.343680pt;}
.y197{bottom:236.383520pt;}
.y49{bottom:237.124160pt;}
.y209{bottom:237.136320pt;}
.y214{bottom:237.162880pt;}
.y313{bottom:239.432320pt;}
.y94{bottom:240.086400pt;}
.y289{bottom:240.253120pt;}
.y2b4{bottom:240.372640pt;}
.y71{bottom:240.521920pt;}
.y26c{bottom:240.684960pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y12c{bottom:243.051200pt;}
.y1f2{bottom:243.691840pt;}
.y1fb{bottom:243.877760pt;}
.y2e7{bottom:250.478720pt;}
.y1be{bottom:251.043520pt;}
.y2d2{bottom:251.102880pt;}
.y1e6{bottom:251.189600pt;}
.y245{bottom:251.295680pt;}
.y150{bottom:251.488000pt;}
.y17a{bottom:251.620800pt;}
.y139{bottom:253.296320pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y11a{bottom:253.489600pt;}
.yd4{bottom:253.503040pt;}
.yb8{bottom:253.540800pt;}
.y10d{bottom:253.618240pt;}
.y18a{bottom:257.299520pt;}
.y196{bottom:257.339360pt;}
.y208{bottom:257.932800pt;}
.y213{bottom:257.959360pt;}
.y48{bottom:258.080000pt;}
.y312{bottom:260.388160pt;}
.y93{bottom:260.882880pt;}
.y288{bottom:261.208960pt;}
.y70{bottom:261.318400pt;}
.y2b3{bottom:261.328480pt;}
.y26b{bottom:261.640800pt;}
.y12b{bottom:263.847680pt;}
.y1f1{bottom:264.647680pt;}
.y1fa{bottom:264.674240pt;}
.y2b{bottom:265.440000pt;}
.y2e6{bottom:271.434560pt;}
.y2d1{bottom:271.899360pt;}
.y1bd{bottom:271.943360pt;}
.y1e5{bottom:271.986080pt;}
.y244{bottom:272.092160pt;}
.y14f{bottom:272.284480pt;}
.y179{bottom:272.417280pt;}
.y138{bottom:274.092800pt;}
.y10c{bottom:274.255360pt;}
.y119{bottom:274.286080pt;}
.yd3{bottom:274.299520pt;}
.yb7{bottom:274.337280pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y189{bottom:278.255360pt;}
.y195{bottom:278.295200pt;}
.y207{bottom:278.888640pt;}
.y212{bottom:278.915200pt;}
.y311{bottom:281.184640pt;}
.y92{bottom:281.838720pt;}
.y287{bottom:282.005440pt;}
.y6f{bottom:282.274240pt;}
.y12a{bottom:284.803520pt;}
.y1f0{bottom:285.444160pt;}
.y1f9{bottom:285.470720pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y2d0{bottom:292.855200pt;}
.y1bc{bottom:292.899200pt;}
.y1e4{bottom:292.941920pt;}
.y2b2{bottom:293.014560pt;}
.y14e{bottom:293.240320pt;}
.y26a{bottom:293.326880pt;}
.y178{bottom:293.373120pt;}
.y137{bottom:295.048640pt;}
.y10b{bottom:295.211200pt;}
.y118{bottom:295.241920pt;}
.yd2{bottom:295.255360pt;}
.yb6{bottom:295.293120pt;}
.y2a{bottom:298.400000pt;}
.y188{bottom:299.051840pt;}
.y194{bottom:299.091680pt;}
.y211{bottom:299.711680pt;}
.y310{bottom:302.140480pt;}
.y91{bottom:302.635200pt;}
.y2c2{bottom:302.961280pt;}
.y6e{bottom:303.070720pt;}
.y2e5{bottom:303.120640pt;}
.y243{bottom:303.937600pt;}
.y129{bottom:305.611840pt;}
.y1ef{bottom:306.400000pt;}
.y1f8{bottom:306.426560pt;}
.yd{bottom:309.452000pt;}
.y206{bottom:310.574720pt;}
.y2b1{bottom:313.651680pt;}
.y286{bottom:313.691520pt;}
.y1bb{bottom:313.695680pt;}
.y1e3{bottom:313.738400pt;}
.y269{bottom:313.964000pt;}
.y14d{bottom:314.036800pt;}
.y177{bottom:314.169600pt;}
.y29{bottom:315.520000pt;}
.y136{bottom:315.845120pt;}
.y10a{bottom:316.007680pt;}
.y117{bottom:316.038400pt;}
.yd1{bottom:316.051840pt;}
.yb5{bottom:316.089600pt;}
.y187{bottom:320.007680pt;}
.y193{bottom:320.047520pt;}
.y210{bottom:320.667520pt;}
.y30f{bottom:322.936960pt;}
.y90{bottom:323.591040pt;}
.y2e4{bottom:323.757760pt;}
.y6d{bottom:324.026560pt;}
.y242{bottom:324.574720pt;}
.y128{bottom:326.567680pt;}
.y205{bottom:331.211840pt;}
.y285{bottom:334.488000pt;}
.y2b0{bottom:334.607520pt;}
.y2c1{bottom:334.647360pt;}
.y1ba{bottom:334.651520pt;}
.y1e2{bottom:334.694240pt;}
.y268{bottom:334.919840pt;}
.y14c{bottom:334.992640pt;}
.y176{bottom:335.125440pt;}
.y135{bottom:336.800960pt;}
.y109{bottom:336.963520pt;}
.y116{bottom:336.994240pt;}
.yd0{bottom:337.007680pt;}
.yb4{bottom:337.045440pt;}
.y186{bottom:340.804160pt;}
.y192{bottom:340.844000pt;}
.yc{bottom:343.809333pt;}
.y30e{bottom:343.892800pt;}
.y8f{bottom:344.387520pt;}
.y2e3{bottom:344.713600pt;}
.y6c{bottom:344.823040pt;}
.y45{bottom:345.157760pt;}
.y241{bottom:345.530560pt;}
.y127{bottom:347.364160pt;}
.y1ee{bottom:349.441600pt;}
.y204{bottom:352.167680pt;}
.y20f{bottom:352.353600pt;}
.y284{bottom:355.284480pt;}
.y2af{bottom:355.404000pt;}
.y1b9{bottom:355.448000pt;}
.y1e1{bottom:355.490720pt;}
.y267{bottom:355.716320pt;}
.y14b{bottom:355.789120pt;}
.y175{bottom:355.921920pt;}
.y134{bottom:357.597440pt;}
.y108{bottom:357.771840pt;}
.y115{bottom:357.790720pt;}
.ycf{bottom:357.804160pt;}
.yb3{bottom:357.841920pt;}
.y185{bottom:361.760000pt;}
.y191{bottom:361.799840pt;}
.yb{bottom:362.706666pt;}
.y1ed{bottom:364.001920pt;}
.y30d{bottom:364.689280pt;}
.y8e{bottom:365.343360pt;}
.y2e2{bottom:365.510080pt;}
.y6b{bottom:365.778880pt;}
.y44{bottom:365.794880pt;}
.y240{bottom:366.327040pt;}
.y126{bottom:368.327680pt;}
.y203{bottom:372.964160pt;}
.y20e{bottom:372.990720pt;}
.y283{bottom:376.240320pt;}
.y2ae{bottom:376.359840pt;}
.y1b8{bottom:376.403840pt;}
.y1e0{bottom:376.446560pt;}
.y266{bottom:376.672160pt;}
.y14a{bottom:376.744960pt;}
.y174{bottom:376.877760pt;}
.y1ec{bottom:378.720000pt;}
.y107{bottom:378.727680pt;}
.y114{bottom:378.746560pt;}
.yce{bottom:378.760000pt;}
.y30c{bottom:385.645120pt;}
.y8d{bottom:386.139840pt;}
.y2e1{bottom:386.465920pt;}
.y6a{bottom:386.575360pt;}
.y43{bottom:386.750720pt;}
.y23f{bottom:387.282880pt;}
.y1eb{bottom:388.640000pt;}
.y125{bottom:389.124160pt;}
.y133{bottom:389.283520pt;}
.yb2{bottom:389.687360pt;}
.y202{bottom:393.920000pt;}
.y20d{bottom:393.946560pt;}
.y282{bottom:397.036800pt;}
.y2ad{bottom:397.156320pt;}
.y1b7{bottom:397.200320pt;}
.y1df{bottom:397.243040pt;}
.y149{bottom:397.541440pt;}
.y184{bottom:397.600000pt;}
.y265{bottom:397.628000pt;}
.y173{bottom:397.674240pt;}
.y106{bottom:399.524160pt;}
.y113{bottom:399.543040pt;}
.ycd{bottom:399.556480pt;}
.y30b{bottom:406.441600pt;}
.y8c{bottom:407.095680pt;}
.y2e0{bottom:407.262400pt;}
.y69{bottom:407.531200pt;}
.y42{bottom:407.547200pt;}
.y2cf{bottom:408.045920pt;}
.y23e{bottom:408.079360pt;}
.y124{bottom:410.080000pt;}
.yb1{bottom:410.324480pt;}
.y281{bottom:417.992640pt;}
.y2ac{bottom:418.112160pt;}
.y1b6{bottom:418.156160pt;}
.y1de{bottom:418.198880pt;}
.y264{bottom:418.424480pt;}
.y148{bottom:418.497280pt;}
.y172{bottom:418.630080pt;}
.y105{bottom:420.498880pt;}
.ycc{bottom:420.512320pt;}
.y30a{bottom:427.397440pt;}
.y8b{bottom:427.892160pt;}
.y2df{bottom:428.218240pt;}
.y68{bottom:428.327680pt;}
.y41{bottom:428.503040pt;}
.y2ce{bottom:428.842400pt;}
.y23d{bottom:429.035200pt;}
.yb0{bottom:431.280320pt;}
.y280{bottom:438.789120pt;}
.y2ab{bottom:438.908640pt;}
.y1b5{bottom:438.952640pt;}
.y147{bottom:439.293760pt;}
.y263{bottom:439.380320pt;}
.y171{bottom:439.426560pt;}
.y183{bottom:440.160000pt;}
.y104{bottom:441.295360pt;}
.ycb{bottom:441.308800pt;}
.y201{bottom:444.481600pt;}
.y309{bottom:448.193920pt;}
.y67{bottom:449.283520pt;}
.y40{bottom:449.299520pt;}
.y2cd{bottom:449.638880pt;}
.y23c{bottom:449.831680pt;}
.yaf{bottom:452.076800pt;}
.y1dd{bottom:452.434720pt;}
.y200{bottom:459.199680pt;}
.y8a{bottom:459.737600pt;}
.y27f{bottom:459.744960pt;}
.y2de{bottom:459.904320pt;}
.y1b4{bottom:459.908480pt;}
.y146{bottom:460.249600pt;}
.y123{bottom:460.643520pt;}
.y103{bottom:462.251200pt;}
.yca{bottom:462.264640pt;}
.y308{bottom:469.149760pt;}
.y66{bottom:470.095360pt;}
.y3f{bottom:470.255360pt;}
.y2cc{bottom:470.594720pt;}
.y1dc{bottom:470.668160pt;}
.y2aa{bottom:470.754080pt;}
.y23b{bottom:470.787520pt;}
.y262{bottom:471.066400pt;}
.y170{bottom:471.112640pt;}
.yae{bottom:473.032640pt;}
.y1ff{bottom:473.760000pt;}
.y182{bottom:475.041920pt;}
.y122{bottom:475.361600pt;}
.ya{bottom:478.990666pt;}
.y89{bottom:480.374720pt;}
.y27e{bottom:480.541440pt;}
.y1b3{bottom:480.704960pt;}
.y145{bottom:481.046080pt;}
.y102{bottom:483.047680pt;}
.yc9{bottom:483.061120pt;}
.y181{bottom:489.760000pt;}
.y121{bottom:489.921920pt;}
.y307{bottom:489.946240pt;}
.y65{bottom:491.051200pt;}
.y3e{bottom:491.051840pt;}
.y2a9{bottom:491.391200pt;}
.y261{bottom:491.703520pt;}
.y16f{bottom:491.909120pt;}
.yad{bottom:493.829120pt;}
.y9{bottom:494.990666pt;}
.y88{bottom:501.330560pt;}
.y2c0{bottom:501.497280pt;}
.y1b2{bottom:501.660800pt;}
.y144{bottom:502.001920pt;}
.y1db{bottom:502.181600pt;}
.y180{bottom:502.400320pt;}
.y23a{bottom:502.473600pt;}
.y101{bottom:504.003520pt;}
.yc8{bottom:504.016960pt;}
.y120{bottom:504.640000pt;}
.y306{bottom:510.902080pt;}
.y64{bottom:511.847680pt;}
.y3d{bottom:512.007680pt;}
.y2a8{bottom:512.347040pt;}
.y27d{bottom:512.386880pt;}
.y260{bottom:512.659360pt;}
.y16e{bottom:512.705600pt;}
.yac{bottom:514.784960pt;}
.y11f{bottom:517.114560pt;}
.y87{bottom:522.127040pt;}
.y2bf{bottom:522.293760pt;}
.y143{bottom:522.798400pt;}
.y1da{bottom:522.818720pt;}
.y239{bottom:523.110720pt;}
.y100{bottom:524.800000pt;}
.yc7{bottom:524.813440pt;}
.y305{bottom:531.698560pt;}
.y63{bottom:532.803520pt;}
.y3c{bottom:532.804160pt;}
.y27c{bottom:533.024000pt;}
.y2a7{bottom:533.143520pt;}
.y25f{bottom:533.455840pt;}
.y16d{bottom:533.661440pt;}
.yab{bottom:535.581440pt;}
.y1b1{bottom:535.896640pt;}
.y86{bottom:543.082880pt;}
.y2dd{bottom:543.249600pt;}
.y142{bottom:543.754240pt;}
.y1d9{bottom:543.774560pt;}
.y238{bottom:544.066560pt;}
.yc6{bottom:545.769280pt;}
.y304{bottom:552.654400pt;}
.y62{bottom:553.653760pt;}
.y3b{bottom:553.760000pt;}
.y27b{bottom:553.979840pt;}
.y2a6{bottom:554.099360pt;}
.y1b0{bottom:554.130080pt;}
.y2be{bottom:554.139200pt;}
.y25e{bottom:554.411680pt;}
.y16c{bottom:554.457920pt;}
.yaa{bottom:556.537280pt;}
.yff{bottom:560.640000pt;}
.y85{bottom:563.879360pt;}
.y2dc{bottom:564.046080pt;}
.y141{bottom:564.550720pt;}
.y1d8{bottom:564.571040pt;}
.y237{bottom:564.863040pt;}
.yc5{bottom:566.565760pt;}
.y303{bottom:573.450880pt;}
.y8{bottom:573.786667pt;}
.y61{bottom:574.609600pt;}
.y27a{bottom:574.776320pt;}
.y2a5{bottom:574.895840pt;}
.y25d{bottom:575.208160pt;}
.y16b{bottom:575.413760pt;}
.y39{bottom:576.960000pt;}
.ya9{bottom:577.333760pt;}
.y84{bottom:584.835200pt;}
.y2db{bottom:585.001920pt;}
.y140{bottom:585.506560pt;}
.y1d7{bottom:585.526880pt;}
.y1af{bottom:585.643520pt;}
.y2cb{bottom:585.785440pt;}
.y236{bottom:585.818880pt;}
.yc4{bottom:587.521600pt;}
.y7{bottom:592.685334pt;}
.y302{bottom:594.406720pt;}
.y60{bottom:595.406080pt;}
.y279{bottom:595.732160pt;}
.y2a4{bottom:595.851680pt;}
.y25c{bottom:596.164000pt;}
.y16a{bottom:596.210240pt;}
.ya8{bottom:598.289600pt;}
.y83{bottom:605.631680pt;}
.y2da{bottom:605.798400pt;}
.y1ae{bottom:606.280640pt;}
.y13f{bottom:606.303040pt;}
.y1d6{bottom:606.323360pt;}
.y2ca{bottom:606.422560pt;}
.y235{bottom:606.615360pt;}
.yc3{bottom:608.318080pt;}
.y301{bottom:615.362560pt;}
.y5f{bottom:616.361920pt;}
.y278{bottom:616.528640pt;}
.y2a3{bottom:616.648160pt;}
.y25b{bottom:616.960480pt;}
.y169{bottom:617.166080pt;}
.ya7{bottom:619.086080pt;}
.y82{bottom:626.587520pt;}
.y1ad{bottom:627.236480pt;}
.yfe{bottom:627.243520pt;}
.y13e{bottom:627.258880pt;}
.y1d5{bottom:627.279200pt;}
.y2c9{bottom:627.378400pt;}
.y234{bottom:627.571200pt;}
.yc2{bottom:629.273920pt;}
.y28{bottom:632.796640pt;}
.y2fa{bottom:636.000000pt;}
.y300{bottom:636.159040pt;}
.y5e{bottom:637.158400pt;}
.y277{bottom:637.484480pt;}
.y2d9{bottom:637.643840pt;}
.y168{bottom:637.962560pt;}
.ya6{bottom:640.041920pt;}
.y6{bottom:645.598667pt;}
.y81{bottom:647.384000pt;}
.y1ac{bottom:648.032960pt;}
.yfd{bottom:648.040000pt;}
.yeb{bottom:648.055360pt;}
.y1d4{bottom:648.075680pt;}
.y2c8{bottom:648.174880pt;}
.y2a2{bottom:648.334240pt;}
.y233{bottom:648.367680pt;}
.y25a{bottom:648.646560pt;}
.y2ff{bottom:657.114880pt;}
.y5d{bottom:658.114240pt;}
.y276{bottom:658.280960pt;}
.y167{bottom:658.918400pt;}
.ya5{bottom:660.838400pt;}
.y27{bottom:660.950240pt;}
.yc1{bottom:660.997760pt;}
.y80{bottom:668.339840pt;}
.y3{bottom:668.977329pt;}
.y1ab{bottom:668.988800pt;}
.yfc{bottom:668.995840pt;}
.yea{bottom:669.011200pt;}
.y1d3{bottom:669.031520pt;}
.y2a1{bottom:669.130720pt;}
.y232{bottom:669.323520pt;}
.y259{bottom:669.443040pt;}
.y2fe{bottom:677.911360pt;}
.y5c{bottom:678.910720pt;}
.y2bd{bottom:679.236800pt;}
.y166{bottom:679.714880pt;}
.ya4{bottom:681.794240pt;}
.y7f{bottom:689.136320pt;}
.y1aa{bottom:689.785280pt;}
.yfb{bottom:689.792320pt;}
.ye9{bottom:689.807680pt;}
.y1d2{bottom:689.828000pt;}
.y2a0{bottom:689.927200pt;}
.y275{bottom:689.967040pt;}
.y231{bottom:690.120000pt;}
.y258{bottom:690.239520pt;}
.y2fd{bottom:698.548480pt;}
.y5b{bottom:699.866560pt;}
.y2bc{bottom:700.033280pt;}
.y36{bottom:700.320000pt;}
.y165{bottom:700.670720pt;}
.ya3{bottom:702.590720pt;}
.y38{bottom:709.280000pt;}
.y7e{bottom:710.092160pt;}
.y1a9{bottom:710.741120pt;}
.yfa{bottom:710.748160pt;}
.ye8{bottom:710.763520pt;}
.y1d1{bottom:710.783840pt;}
.y29f{bottom:710.883040pt;}
.y230{bottom:711.075840pt;}
.y257{bottom:711.195360pt;}
.y2fc{bottom:716.954560pt;}
.y5a{bottom:720.663040pt;}
.y2d8{bottom:720.989120pt;}
.y164{bottom:721.467200pt;}
.ya2{bottom:723.546560pt;}
.y34{bottom:724.800000pt;}
.y7d{bottom:730.888640pt;}
.y1a8{bottom:731.537600pt;}
.yf9{bottom:731.544640pt;}
.ye7{bottom:731.560000pt;}
.y1d0{bottom:731.580320pt;}
.y29e{bottom:731.679520pt;}
.y2bb{bottom:731.719360pt;}
.y22f{bottom:731.872320pt;}
.y256{bottom:731.991840pt;}
.y2fb{bottom:735.520000pt;}
.y59{bottom:741.618880pt;}
.y2d7{bottom:741.785600pt;}
.y163{bottom:742.423040pt;}
.ya1{bottom:744.343040pt;}
.y7c{bottom:751.844480pt;}
.y1a7{bottom:752.493440pt;}
.yf8{bottom:752.500480pt;}
.ye6{bottom:752.515840pt;}
.y1cf{bottom:752.536160pt;}
.y29d{bottom:752.635360pt;}
.y255{bottom:752.947680pt;}
.y58{bottom:762.415360pt;}
.y2d6{bottom:762.741440pt;}
.y162{bottom:763.219520pt;}
.y22e{bottom:763.717760pt;}
.ya0{bottom:765.298880pt;}
.y7b{bottom:772.640960pt;}
.y1a6{bottom:773.289920pt;}
.yf7{bottom:773.296960pt;}
.ye5{bottom:773.312320pt;}
.y1ce{bottom:773.332640pt;}
.y29c{bottom:773.431840pt;}
.y254{bottom:773.744160pt;}
.y2{bottom:781.661334pt;}
.y57{bottom:783.371200pt;}
.y2d5{bottom:783.537920pt;}
.y161{bottom:784.175360pt;}
.y22d{bottom:784.354880pt;}
.y9f{bottom:786.095360pt;}
.y7a{bottom:793.596800pt;}
.y1a5{bottom:794.245760pt;}
.yf6{bottom:794.252800pt;}
.ye4{bottom:794.268160pt;}
.y1cd{bottom:794.288480pt;}
.y29b{bottom:794.387680pt;}
.y253{bottom:794.700000pt;}
.y30{bottom:798.080000pt;}
.y56{bottom:804.167680pt;}
.y160{bottom:805.131200pt;}
.y22c{bottom:805.310720pt;}
.y9e{bottom:807.051200pt;}
.y1a4{bottom:815.042240pt;}
.yf5{bottom:815.049280pt;}
.ye3{bottom:815.064640pt;}
.y1cc{bottom:815.084960pt;}
.y2c7{bottom:815.184160pt;}
.y2d4{bottom:815.224000pt;}
.y33{bottom:823.680000pt;}
.y55{bottom:825.123520pt;}
.y79{bottom:825.282880pt;}
.y15f{bottom:825.927680pt;}
.y29a{bottom:826.073760pt;}
.y22b{bottom:826.107200pt;}
.y252{bottom:826.386080pt;}
.y321{bottom:827.802080pt;}
.y9d{bottom:827.847680pt;}
.y1a3{bottom:835.998080pt;}
.yf4{bottom:836.005120pt;}
.ye2{bottom:836.020480pt;}
.y1cb{bottom:836.040800pt;}
.y2c6{bottom:836.140000pt;}
.y222{bottom:836.219680pt;}
.y320{bottom:843.804480pt;}
.y54{bottom:845.920000pt;}
.y299{bottom:846.870240pt;}
.y15e{bottom:846.883520pt;}
.y22a{bottom:847.063040pt;}
.y251{bottom:847.182560pt;}
.y9c{bottom:848.803520pt;}
.y1a2{bottom:856.794560pt;}
.ye1{bottom:856.816960pt;}
.y2c5{bottom:856.936480pt;}
.y1{bottom:859.312000pt;}
.y31f{bottom:862.369920pt;}
.y298{bottom:867.666720pt;}
.y15d{bottom:867.680000pt;}
.yf3{bottom:867.691200pt;}
.y274{bottom:867.706560pt;}
.y1ca{bottom:867.726880pt;}
.y221{bottom:867.733120pt;}
.y229{bottom:867.859520pt;}
.y250{bottom:867.979040pt;}
.y32{bottom:868.000000pt;}
.y9b{bottom:869.600000pt;}
.y53{bottom:872.960000pt;}
.ye0{bottom:877.772800pt;}
.y2c4{bottom:877.892320pt;}
.y31e{bottom:881.094720pt;}
.yf2{bottom:888.487680pt;}
.y273{bottom:888.503040pt;}
.y1c9{bottom:888.523360pt;}
.y220{bottom:888.529600pt;}
.y297{bottom:888.622560pt;}
.y15c{bottom:888.635840pt;}
.y1a1{bottom:888.662400pt;}
.y228{bottom:888.815360pt;}
.y24f{bottom:888.934880pt;}
.y52{bottom:892.494720pt;}
.ydf{bottom:898.569280pt;}
.y31d{bottom:899.819520pt;}
.y9a{bottom:905.440000pt;}
.yf1{bottom:909.284160pt;}
.y1a0{bottom:909.299520pt;}
.y1c8{bottom:909.319840pt;}
.y21f{bottom:909.326080pt;}
.y296{bottom:909.419040pt;}
.y15b{bottom:909.432320pt;}
.y2f3{bottom:909.551840pt;}
.y2c3{bottom:909.578400pt;}
.y227{bottom:909.611840pt;}
.y24e{bottom:909.731360pt;}
.y51{bottom:913.291200pt;}
.y31c{bottom:918.384960pt;}
.yde{bottom:919.525120pt;}
.yf0{bottom:930.251200pt;}
.y19f{bottom:930.255360pt;}
.y1c7{bottom:930.275680pt;}
.y21e{bottom:930.281920pt;}
.y2f2{bottom:930.348320pt;}
.y295{bottom:930.374880pt;}
.y15a{bottom:930.388160pt;}
.y226{bottom:930.567680pt;}
.y24d{bottom:930.687200pt;}
.y50{bottom:934.087680pt;}
.y31b{bottom:937.109760pt;}
.ydd{bottom:940.321600pt;}
.y2f8{bottom:950.725440pt;}
.yef{bottom:951.047680pt;}
.y19e{bottom:951.051840pt;}
.y1c6{bottom:951.072160pt;}
.y21d{bottom:951.078400pt;}
.y2f1{bottom:951.144800pt;}
.y294{bottom:951.171360pt;}
.y159{bottom:951.184640pt;}
.y225{bottom:951.364160pt;}
.y24c{bottom:951.483680pt;}
.y4f{bottom:955.043520pt;}
.y31a{bottom:955.834560pt;}
.ydc{bottom:961.277440pt;}
.yee{bottom:972.003520pt;}
.y99{bottom:972.007680pt;}
.y1c5{bottom:972.028000pt;}
.y21c{bottom:972.034240pt;}
.y2f0{bottom:972.100640pt;}
.y293{bottom:972.127200pt;}
.y158{bottom:972.140480pt;}
.y219{bottom:972.167040pt;}
.y224{bottom:972.320000pt;}
.y24b{bottom:972.439520pt;}
.y319{bottom:974.400000pt;}
.y4e{bottom:975.840000pt;}
.y26{bottom:982.233280pt;}
.y2f7{bottom:982.238880pt;}
.y98{bottom:992.804160pt;}
.y1c4{bottom:992.824480pt;}
.y21b{bottom:992.830720pt;}
.yed{bottom:992.857280pt;}
.y2ef{bottom:992.897120pt;}
.y292{bottom:992.923680pt;}
.y157{bottom:992.936960pt;}
.ydb{bottom:992.963520pt;}
.y223{bottom:1008.160000pt;}
.y4d{bottom:1011.040000pt;}
.y25{bottom:1013.760000pt;}
.y1c3{bottom:1013.780320pt;}
.y21a{bottom:1013.786560pt;}
.yec{bottom:1013.813120pt;}
.y2ee{bottom:1013.852960pt;}
.y291{bottom:1013.879520pt;}
.y156{bottom:1013.892800pt;}
.y2f6{bottom:1013.924960pt;}
.y23{bottom:1051.840000pt;}
.y4c{bottom:1056.800000pt;}
.y20{bottom:1061.120000pt;}
.h19{height:7.430312pt;}
.hf{height:14.880000pt;}
.ha{height:21.120000pt;}
.h1c{height:21.719375pt;}
.h13{height:23.200000pt;}
.h7{height:28.560000pt;}
.hb{height:30.873600pt;}
.h1d{height:33.150625pt;}
.h10{height:34.560000pt;}
.h12{height:36.726562pt;}
.h2d{height:38.246400pt;}
.h11{height:40.480000pt;}
.h16{height:40.644063pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2b{height:42.867188pt;}
.h9{height:47.439687pt;}
.h2a{height:48.811895pt;}
.h1f{height:48.959735pt;}
.h2{height:48.960000pt;}
.h17{height:48.968750pt;}
.h29{height:49.010935pt;}
.h21{height:49.195255pt;}
.h25{height:49.197815pt;}
.h1a{height:49.209335pt;}
.h20{height:49.273335pt;}
.h28{height:49.334775pt;}
.h27{height:49.342455pt;}
.h23{height:49.348855pt;}
.h1b{height:49.362935pt;}
.h18{height:49.365495pt;}
.h24{height:49.377015pt;}
.h22{height:49.379575pt;}
.h26{height:49.393655pt;}
.h14{height:53.913600pt;}
.hc{height:57.156250pt;}
.h1e{height:57.293437pt;}
.h15{height:62.720000pt;}
.h5{height:69.360000pt;}
.he{height:92.160000pt;}
.h4{height:105.826671pt;}
.hd{height:143.838667pt;}
.h2c{height:648.318667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:105.120000pt;}
.w8{width:217.278667pt;}
.w4{width:233.600000pt;}
.wa{width:240.960000pt;}
.w7{width:273.120000pt;}
.w9{width:289.920000pt;}
.wb{width:506.081333pt;}
.w5{width:557.920000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.600000pt;}
.x6{left:47.360000pt;}
.x17{left:66.080000pt;}
.x15{left:85.600000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x13{left:103.520000pt;}
.x14{left:113.440000pt;}
.xd{left:114.720000pt;}
.xf{left:124.320000pt;}
.x1e{left:126.080000pt;}
.x11{left:133.440000pt;}
.x16{left:136.800000pt;}
.x8{left:140.800000pt;}
.x12{left:143.040000pt;}
.x18{left:151.200000pt;}
.x4{left:180.874667pt;}
.x20{left:182.560000pt;}
.x1f{left:188.970560pt;}
.x21{left:192.160000pt;}
.x22{left:204.960000pt;}
.xc{left:388.000000pt;}
.x9{left:396.800000pt;}
.x3{left:404.408000pt;}
.x1a{left:408.160000pt;}
.x1b{left:427.040000pt;}
.x10{left:442.400000pt;}
.x5{left:453.280000pt;}
.x7{left:465.600000pt;}
.x1c{left:553.597760pt;}
.x1d{left:680.154240pt;}
.xb{left:691.200000pt;}
.xa{left:694.723520pt;}
.x19{left:699.208320pt;}
}




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