
    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_741aefaa74a84efb65523800.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_df2aff87ca92fc9c447217de.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_b392e6101741972ee10c53b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693848;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_9f41129d78924fcd1cc60b7a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a29c16db115c99ad9aca897e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.123047;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_8228291073af76c2f2cc9e0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_44059e113a20a00788ca6996.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.927734;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_97235c502241318d419ef3aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.120117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b55a38220d1399ee8b8ad389.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_24a7856b22af301d988de383.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_530528c3fdf651c2280adbab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f9638ef99708443d3bbbc466.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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);}
.v2{vertical-align:-27.360000px;}
.v7{vertical-align:-15.120000px;}
.v3{vertical-align:-12.240000px;}
.v8{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v6{vertical-align:15.347520px;}
.v1{vertical-align:27.360000px;}
.v5{vertical-align:33.840000px;}
.ls82{letter-spacing:-2.848320px;}
.ls7a{letter-spacing:-2.185920px;}
.ls91{letter-spacing:-1.620000px;}
.lsac{letter-spacing:-1.566000px;}
.ls4e{letter-spacing:-1.457280px;}
.ls93{letter-spacing:-1.026000px;}
.ls79{letter-spacing:-0.993600px;}
.ls30{letter-spacing:-0.927360px;}
.ls94{letter-spacing:-0.918000px;}
.ls96{letter-spacing:-0.864000px;}
.ls92{letter-spacing:-0.810000px;}
.ls31{letter-spacing:-0.794880px;}
.ls35{letter-spacing:-0.728640px;}
.lsa4{letter-spacing:-0.702000px;}
.ls33{letter-spacing:-0.662400px;}
.ls32{letter-spacing:-0.596160px;}
.lsb2{letter-spacing:-0.594000px;}
.ls95{letter-spacing:-0.540000px;}
.lsa5{letter-spacing:-0.468000px;}
.ls56{letter-spacing:-0.463680px;}
.lsb3{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.397440px;}
.ls97{letter-spacing:-0.396000px;}
.lsb1{letter-spacing:-0.378000px;}
.ls18{letter-spacing:-0.341280px;}
.ls13{letter-spacing:-0.331200px;}
.ls3f{letter-spacing:-0.324000px;}
.ls45{letter-spacing:-0.298800px;}
.ls11{letter-spacing:-0.289440px;}
.ls1a{letter-spacing:-0.284400px;}
.ls3b{letter-spacing:-0.270000px;}
.ls1d{letter-spacing:-0.264960px;}
.ls2f{letter-spacing:-0.250560px;}
.ls10{letter-spacing:-0.241200px;}
.ls42{letter-spacing:-0.239040px;}
.ls64{letter-spacing:-0.216000px;}
.ls2d{letter-spacing:-0.208800px;}
.ls14{letter-spacing:-0.198720px;}
.ls47{letter-spacing:-0.179280px;}
.ls29{letter-spacing:-0.167040px;}
.ls68{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.144720px;}
.ls12{letter-spacing:-0.132480px;}
.ls19{letter-spacing:-0.125280px;}
.ls44{letter-spacing:-0.119520px;}
.ls27{letter-spacing:-0.108000px;}
.ls2b{letter-spacing:-0.083520px;}
.ls1c{letter-spacing:-0.066240px;}
.lsae{letter-spacing:-0.059760px;}
.ls3a{letter-spacing:-0.054000px;}
.ls2a{letter-spacing:-0.041760px;}
.ls0{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.015120px;}
.ls6f{letter-spacing:0.018000px;}
.ls54{letter-spacing:0.019872px;}
.ls6{letter-spacing:0.032400px;}
.ls17{letter-spacing:0.048240px;}
.ls72{letter-spacing:0.048960px;}
.ls63{letter-spacing:0.052560px;}
.ls78{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.057600px;}
.lsa6{letter-spacing:0.059400px;}
.ls36{letter-spacing:0.059760px;}
.lse{letter-spacing:0.066240px;}
.ls7{letter-spacing:0.072000px;}
.lsa7{letter-spacing:0.091800px;}
.ls8d{letter-spacing:0.097200px;}
.ls89{letter-spacing:0.102600px;}
.ls3c{letter-spacing:0.108000px;}
.ls40{letter-spacing:0.119520px;}
.ls28{letter-spacing:0.120960px;}
.ls1f{letter-spacing:0.132480px;}
.lsa1{letter-spacing:0.135000px;}
.ls7c{letter-spacing:0.144000px;}
.ls86{letter-spacing:0.152352px;}
.ls9d{letter-spacing:0.156600px;}
.ls3d{letter-spacing:0.162000px;}
.lsa8{letter-spacing:0.167400px;}
.lsa2{letter-spacing:0.172800px;}
.lsa9{letter-spacing:0.178200px;}
.ls5{letter-spacing:0.178560px;}
.ls77{letter-spacing:0.178848px;}
.ls41{letter-spacing:0.179280px;}
.ls9{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.181440px;}
.ls8e{letter-spacing:0.183600px;}
.lsd{letter-spacing:0.192960px;}
.ls8f{letter-spacing:0.194400px;}
.lsf{letter-spacing:0.198720px;}
.ls99{letter-spacing:0.199800px;}
.ls2e{letter-spacing:0.208800px;}
.lsaa{letter-spacing:0.210600px;}
.ls98{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.217440px;}
.lsc{letter-spacing:0.218880px;}
.ls9a{letter-spacing:0.226800px;}
.ls8b{letter-spacing:0.232200px;}
.ls4{letter-spacing:0.237600px;}
.ls43{letter-spacing:0.239040px;}
.ls3{letter-spacing:0.240480px;}
.ls8a{letter-spacing:0.248400px;}
.ls90{letter-spacing:0.252000px;}
.ls22{letter-spacing:0.264960px;}
.ls70{letter-spacing:0.270000px;}
.ls8c{letter-spacing:0.275400px;}
.ls46{letter-spacing:0.298800px;}
.lsa3{letter-spacing:0.307800px;}
.ls3e{letter-spacing:0.324000px;}
.ls48{letter-spacing:0.331200px;}
.ls2c{letter-spacing:0.334080px;}
.ls1b{letter-spacing:0.341280px;}
.lsaf{letter-spacing:0.358560px;}
.lsa{letter-spacing:0.360000px;}
.ls74{letter-spacing:0.378000px;}
.ls7d{letter-spacing:0.396000px;}
.ls1e{letter-spacing:0.414000px;}
.ls9b{letter-spacing:0.432000px;}
.ls9c{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.574560px;}
.ls9e{letter-spacing:0.594000px;}
.ls53{letter-spacing:0.728640px;}
.ls9f{letter-spacing:0.756000px;}
.lsa0{letter-spacing:1.080000px;}
.ls80{letter-spacing:1.318176px;}
.ls51{letter-spacing:1.391040px;}
.ls26{letter-spacing:1.457280px;}
.ls84{letter-spacing:2.172672px;}
.ls4c{letter-spacing:2.185920px;}
.ls4a{letter-spacing:2.848320px;}
.ls87{letter-spacing:2.914560px;}
.ls4b{letter-spacing:3.576960px;}
.ls23{letter-spacing:4.305600px;}
.ls24{letter-spacing:4.312224px;}
.ls39{letter-spacing:5.034240px;}
.ls4f{letter-spacing:5.762880px;}
.ls21{letter-spacing:6.491520px;}
.ls85{letter-spacing:7.187040px;}
.ls34{letter-spacing:7.220160px;}
.ls20{letter-spacing:7.948800px;}
.ls52{letter-spacing:8.611200px;}
.ls50{letter-spacing:9.339840px;}
.ls83{letter-spacing:10.797120px;}
.ls55{letter-spacing:11.525760px;}
.ls57{letter-spacing:12.983040px;}
.ls25{letter-spacing:13.711680px;}
.ls4d{letter-spacing:16.560000px;}
.ls88{letter-spacing:16.566624px;}
.ls81{letter-spacing:17.288640px;}
.ls67{letter-spacing:20.136960px;}
.ls49{letter-spacing:22.322880px;}
.ls59{letter-spacing:30.443760px;}
.ls62{letter-spacing:31.082400px;}
.ls5b{letter-spacing:31.118400px;}
.ls6e{letter-spacing:34.038000px;}
.ls7f{letter-spacing:48.438000px;}
.ls38{letter-spacing:57.807360px;}
.ls5d{letter-spacing:58.505040px;}
.ls5f{letter-spacing:59.222160px;}
.ls7e{letter-spacing:73.602000px;}
.ls75{letter-spacing:82.998000px;}
.ls7b{letter-spacing:91.638000px;}
.ls73{letter-spacing:93.078000px;}
.ls76{letter-spacing:95.958000px;}
.ls6d{letter-spacing:101.700000px;}
.ls6c{letter-spacing:115.362000px;}
.ls66{letter-spacing:116.628768px;}
.ls71{letter-spacing:116.648640px;}
.ls65{letter-spacing:121.682880px;}
.ls69{letter-spacing:128.358000px;}
.ls6b{letter-spacing:129.798000px;}
.ls6a{letter-spacing:142.002000px;}
.lsb0{letter-spacing:224.640000px;}
.ls61{letter-spacing:252.187200px;}
.ls5a{letter-spacing:411.307920px;}
.ls58{letter-spacing:453.757680px;}
.ls5c{letter-spacing:512.800560px;}
.ls5e{letter-spacing:532.257120px;}
.ls60{letter-spacing:577.620000px;}
.lsad{letter-spacing:847.408320px;}
.lsab{letter-spacing:847.440000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-21.060000px;}
.wsa8{word-spacing:-20.136960px;}
.ws0{word-spacing:-18.984000px;}
.wsc{word-spacing:-18.000000px;}
.ws7f{word-spacing:-16.891200px;}
.ws82{word-spacing:-16.758720px;}
.ws26{word-spacing:-16.692480px;}
.wsf{word-spacing:-16.626240px;}
.ws29{word-spacing:-16.560000px;}
.ws27{word-spacing:-16.493760px;}
.ws81{word-spacing:-16.427520px;}
.ws28{word-spacing:-16.361280px;}
.ws80{word-spacing:-16.295040px;}
.ws5{word-spacing:-16.228800px;}
.ws4{word-spacing:-16.162560px;}
.ws84{word-spacing:-16.096320px;}
.ws2a{word-spacing:-15.963840px;}
.ws6c{word-spacing:-15.897600px;}
.ws6b{word-spacing:-15.831360px;}
.ws83{word-spacing:-15.632640px;}
.wsde{word-spacing:-15.298560px;}
.ws54{word-spacing:-15.238800px;}
.ws53{word-spacing:-15.119280px;}
.ws51{word-spacing:-15.059520px;}
.ws50{word-spacing:-14.999760px;}
.wsdd{word-spacing:-14.880240px;}
.ws9c{word-spacing:-14.820480px;}
.ws55{word-spacing:-14.760720px;}
.ws52{word-spacing:-14.700960px;}
.ws56{word-spacing:-14.641200px;}
.wse{word-spacing:-14.561280px;}
.wsb{word-spacing:-13.935600px;}
.ws9{word-spacing:-13.878720px;}
.wsb7{word-spacing:-13.878000px;}
.wsab{word-spacing:-13.770000px;}
.wsac{word-spacing:-13.662000px;}
.wsc9{word-spacing:-13.608000px;}
.wsb5{word-spacing:-13.554000px;}
.ws22{word-spacing:-13.500000px;}
.ws4e{word-spacing:-13.446000px;}
.ws4f{word-spacing:-13.392000px;}
.wsa6{word-spacing:-13.338000px;}
.wsa4{word-spacing:-13.284000px;}
.wsa5{word-spacing:-13.230000px;}
.wsad{word-spacing:-13.176000px;}
.wse7{word-spacing:-13.068000px;}
.wsd7{word-spacing:-12.798000px;}
.wscb{word-spacing:-12.690000px;}
.wsd9{word-spacing:-12.636000px;}
.ws8{word-spacing:-12.108240px;}
.ws6{word-spacing:-11.915280px;}
.ws7{word-spacing:-11.818800px;}
.ws2{word-spacing:-11.770560px;}
.wsd{word-spacing:-10.440000px;}
.ws24{word-spacing:-10.398240px;}
.wsa{word-spacing:-10.314720px;}
.ws25{word-spacing:-10.231200px;}
.wscd{word-spacing:-9.360000px;}
.wsb2{word-spacing:-9.339840px;}
.wscc{word-spacing:-9.324000px;}
.wsca{word-spacing:-9.252000px;}
.wsb6{word-spacing:-9.000000px;}
.wsce{word-spacing:-8.604000px;}
.wsd8{word-spacing:-8.532000px;}
.ws23{word-spacing:-7.680960px;}
.ws48{word-spacing:-7.220160px;}
.ws7d{word-spacing:-5.961600px;}
.wsb3{word-spacing:-5.034240px;}
.wsb1{word-spacing:-4.106880px;}
.ws7e{word-spacing:-3.775680px;}
.ws4c{word-spacing:-3.709440px;}
.ws36{word-spacing:-3.643200px;}
.ws3d{word-spacing:-3.510720px;}
.wsbe{word-spacing:-3.378240px;}
.ws32{word-spacing:-2.914560px;}
.ws86{word-spacing:-2.782080px;}
.ws34{word-spacing:-2.649600px;}
.wscf{word-spacing:-2.583360px;}
.ws76{word-spacing:-2.252160px;}
.wsa0{word-spacing:-2.119680px;}
.ws73{word-spacing:-1.987200px;}
.ws57{word-spacing:-1.728000px;}
.ws1f{word-spacing:-1.523520px;}
.ws9a{word-spacing:-1.457280px;}
.ws6d{word-spacing:-1.391040px;}
.ws8e{word-spacing:-1.258560px;}
.ws93{word-spacing:-1.192320px;}
.ws96{word-spacing:-1.059840px;}
.wsbd{word-spacing:-0.927360px;}
.ws5a{word-spacing:-0.794880px;}
.ws69{word-spacing:-0.662400px;}
.ws13{word-spacing:-0.596160px;}
.ws15{word-spacing:-0.529920px;}
.ws97{word-spacing:-0.463680px;}
.wsdb{word-spacing:-0.432000px;}
.wsd2{word-spacing:-0.378000px;}
.ws19{word-spacing:-0.341280px;}
.ws2f{word-spacing:-0.334080px;}
.wsa1{word-spacing:-0.324000px;}
.ws63{word-spacing:-0.298800px;}
.wsd0{word-spacing:-0.216000px;}
.ws30{word-spacing:-0.208800px;}
.wsc1{word-spacing:-0.198720px;}
.ws5d{word-spacing:-0.179280px;}
.ws59{word-spacing:-0.162000px;}
.ws33{word-spacing:-0.132480px;}
.ws62{word-spacing:-0.119520px;}
.ws58{word-spacing:-0.108000px;}
.ws1a{word-spacing:-0.066240px;}
.ws5e{word-spacing:-0.059760px;}
.ws1{word-spacing:0.000000px;}
.ws2d{word-spacing:0.041760px;}
.wsa3{word-spacing:0.059760px;}
.ws37{word-spacing:0.066240px;}
.ws2e{word-spacing:0.083520px;}
.ws2b{word-spacing:0.108000px;}
.ws64{word-spacing:0.119520px;}
.ws12{word-spacing:0.132480px;}
.ws17{word-spacing:0.144720px;}
.wsb9{word-spacing:0.162000px;}
.ws5c{word-spacing:0.179280px;}
.ws16{word-spacing:0.198720px;}
.wsae{word-spacing:0.216000px;}
.ws65{word-spacing:0.239040px;}
.ws10{word-spacing:0.241200px;}
.ws31{word-spacing:0.250560px;}
.ws1c{word-spacing:0.264960px;}
.wsaf{word-spacing:0.270000px;}
.ws11{word-spacing:0.289440px;}
.ws61{word-spacing:0.298800px;}
.wsb8{word-spacing:0.324000px;}
.ws14{word-spacing:0.331200px;}
.ws18{word-spacing:0.341280px;}
.wsa2{word-spacing:0.378000px;}
.ws9b{word-spacing:0.397440px;}
.ws5f{word-spacing:0.418320px;}
.wsb0{word-spacing:0.432000px;}
.wsc8{word-spacing:0.463680px;}
.ws5b{word-spacing:0.486000px;}
.wsd4{word-spacing:0.540000px;}
.ws2c{word-spacing:0.542880px;}
.wse8{word-spacing:0.594000px;}
.ws44{word-spacing:0.596160px;}
.ws46{word-spacing:0.662400px;}
.ws4a{word-spacing:0.728640px;}
.ws3e{word-spacing:0.794880px;}
.wsd5{word-spacing:0.864000px;}
.wsd6{word-spacing:0.918000px;}
.ws35{word-spacing:0.927360px;}
.wsba{word-spacing:0.993600px;}
.ws66{word-spacing:1.015920px;}
.wsd3{word-spacing:1.026000px;}
.ws87{word-spacing:1.126080px;}
.ws60{word-spacing:1.135440px;}
.wsda{word-spacing:1.188000px;}
.wsbc{word-spacing:1.258560px;}
.ws8b{word-spacing:1.391040px;}
.ws75{word-spacing:1.457280px;}
.ws95{word-spacing:1.523520px;}
.wsdc{word-spacing:1.566000px;}
.wsd1{word-spacing:1.620000px;}
.ws72{word-spacing:1.656000px;}
.ws94{word-spacing:1.722240px;}
.wsc2{word-spacing:2.053440px;}
.ws8d{word-spacing:2.119680px;}
.ws78{word-spacing:2.252160px;}
.ws77{word-spacing:2.384640px;}
.ws41{word-spacing:2.848320px;}
.ws1b{word-spacing:2.980800px;}
.ws40{word-spacing:3.113280px;}
.wsa7{word-spacing:3.179520px;}
.ws43{word-spacing:3.510720px;}
.ws45{word-spacing:3.643200px;}
.ws74{word-spacing:3.775680px;}
.ws47{word-spacing:4.239360px;}
.ws3a{word-spacing:4.504320px;}
.ws4d{word-spacing:4.703040px;}
.wsc7{word-spacing:4.968000px;}
.ws6a{word-spacing:5.100480px;}
.ws70{word-spacing:5.232960px;}
.ws38{word-spacing:5.696640px;}
.ws8f{word-spacing:5.829120px;}
.ws20{word-spacing:5.961600px;}
.ws49{word-spacing:6.226560px;}
.ws90{word-spacing:6.425280px;}
.ws91{word-spacing:6.557760px;}
.ws85{word-spacing:6.690240px;}
.ws1e{word-spacing:7.153920px;}
.ws7c{word-spacing:7.286400px;}
.ws92{word-spacing:7.418880px;}
.ws68{word-spacing:7.617600px;}
.ws79{word-spacing:7.882560px;}
.ws3c{word-spacing:8.015040px;}
.ws3b{word-spacing:8.147520px;}
.ws67{word-spacing:8.544960px;}
.wsaa{word-spacing:8.611200px;}
.wsbb{word-spacing:8.809920px;}
.ws99{word-spacing:8.876160px;}
.ws1d{word-spacing:9.273600px;}
.ws8c{word-spacing:9.406080px;}
.ws89{word-spacing:9.538560px;}
.ws39{word-spacing:10.002240px;}
.ws8a{word-spacing:10.134720px;}
.wsb4{word-spacing:10.267200px;}
.wsc6{word-spacing:10.730880px;}
.ws71{word-spacing:10.863360px;}
.ws9f{word-spacing:11.459520px;}
.ws88{word-spacing:11.592000px;}
.ws98{word-spacing:11.724480px;}
.wsbf{word-spacing:12.188160px;}
.ws9e{word-spacing:12.916800px;}
.ws6f{word-spacing:13.049280px;}
.ws9d{word-spacing:13.181760px;}
.wsc4{word-spacing:13.645440px;}
.ws42{word-spacing:13.777920px;}
.ws21{word-spacing:13.910400px;}
.ws3f{word-spacing:14.307840px;}
.wsa9{word-spacing:14.440320px;}
.ws4b{word-spacing:15.036480px;}
.wsc0{word-spacing:15.301440px;}
.ws7b{word-spacing:16.493760px;}
.ws7a{word-spacing:17.222400px;}
.wsc3{word-spacing:19.673280px;}
.ws6e{word-spacing:22.389120px;}
.wsc5{word-spacing:32.325120px;}
.wse3{word-spacing:43.146000px;}
.wse2{word-spacing:50.544000px;}
.wsdf{word-spacing:54.955800px;}
.wse1{word-spacing:55.404000px;}
.wse0{word-spacing:58.357800px;}
.wse4{word-spacing:63.342000px;}
.wse6{word-spacing:65.518200px;}
.wse5{word-spacing:74.520000px;}
._23{margin-left:-1661.562000px;}
._1c{margin-left:-21.692256px;}
._1a{margin-left:-20.242944px;}
._1b{margin-left:-18.885024px;}
._17{margin-left:-12.021216px;}
._21{margin-left:-9.631632px;}
._22{margin-left:-8.556528px;}
._2{margin-left:-7.353600px;}
._16{margin-left:-5.637024px;}
._3{margin-left:-4.284000px;}
._13{margin-left:-3.124896px;}
._1{margin-left:-1.996800px;}
._4{width:1.109520px;}
._9{width:2.321712px;}
._5{width:3.643200px;}
._0{width:5.587200px;}
._6{width:7.038240px;}
._d{width:8.670816px;}
._e{width:9.763776px;}
._11{width:10.764336px;}
._12{width:11.954976px;}
._10{width:12.976080px;}
._f{width:14.003136px;}
._20{width:15.218640px;}
._a{width:18.487584px;}
._b{width:19.689168px;}
._15{width:21.852576px;}
._7{width:23.654304px;}
._8{width:25.048320px;}
._1e{width:59.004000px;}
._2c{width:63.231840px;}
._1f{width:64.422000px;}
._1d{width:88.020000px;}
._24{width:100.746000px;}
._28{width:116.694000px;}
._29{width:118.692000px;}
._18{width:121.133520px;}
._27{width:130.950000px;}
._26{width:140.022000px;}
._25{width:151.164000px;}
._14{width:164.738880px;}
._c{width:169.574400px;}
._19{width:173.722320px;}
._2d{width:183.954480px;}
._2a{width:187.746600px;}
._2b{width:189.516600px;}
.fc6{color:rgb(19,20,19);}
.fc3{color:transparent;}
.fc2{color:rgb(0,106,142);}
.fc7{color:rgb(89,89,89);}
.fc5{color:rgb(1,2,5);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:5.760000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:33.120000px;}
.fse{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fsd{font-size:59.760000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs6{font-size:84.240000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.240000px;}
.y1e{bottom:4.500000px;}
.y148{bottom:4.860000px;}
.yf8{bottom:5.040000px;}
.y12a{bottom:5.220000px;}
.y97{bottom:5.400000px;}
.y5d{bottom:5.580000px;}
.y44{bottom:5.940000px;}
.yc{bottom:8.040000px;}
.y114{bottom:12.600000px;}
.y58{bottom:13.140000px;}
.yb6{bottom:13.860000px;}
.ye5{bottom:14.040000px;}
.y147{bottom:20.160000px;}
.y113{bottom:20.340000px;}
.y5a{bottom:20.700000px;}
.y93{bottom:22.320000px;}
.y38{bottom:32.940000px;}
.y9d{bottom:39.060000px;}
.y8d{bottom:39.240000px;}
.y3b{bottom:39.780000px;}
.y21{bottom:53.640000px;}
.y1d{bottom:54.900000px;}
.y1a{bottom:69.510000px;}
.y3e{bottom:73.980000px;}
.y20{bottom:74.344860px;}
.y1f{bottom:87.840000px;}
.y19{bottom:91.590000px;}
.yf3{bottom:93.780000px;}
.ydd{bottom:95.138640px;}
.y13a{bottom:95.201280px;}
.y16b{bottom:95.381280px;}
.y18a{bottom:98.078400px;}
.y83{bottom:98.918640px;}
.y14{bottom:99.795000px;}
.y10e{bottom:101.500560px;}
.ybe{bottom:102.590640px;}
.y1b4{bottom:102.604500px;}
.y130{bottom:105.470640px;}
.y18{bottom:113.670000px;}
.yf2{bottom:114.480000px;}
.y23{bottom:115.380000px;}
.ydc{bottom:117.461520px;}
.y139{bottom:117.524160px;}
.y16a{bottom:117.704160px;}
.y1b3{bottom:117.909000px;}
.y1e7{bottom:118.273500px;}
.y189{bottom:120.401280px;}
.y82{bottom:121.241520px;}
.y10d{bottom:123.641280px;}
.ybd{bottom:124.731360px;}
.y12f{bottom:127.793520px;}
.y1b2{bottom:133.029000px;}
.y1e6{bottom:133.393500px;}
.y10{bottom:133.935000px;}
.yf1{bottom:135.000000px;}
.y17{bottom:135.750000px;}
.ydb{bottom:139.784400px;}
.y138{bottom:139.847040px;}
.y169{bottom:140.027040px;}
.y188{bottom:142.724160px;}
.y81{bottom:143.382240px;}
.y10c{bottom:145.964160px;}
.ybc{bottom:147.054240px;}
.y1b1{bottom:148.324500px;}
.y1e5{bottom:148.513500px;}
.y12e{bottom:150.116400px;}
.y15{bottom:154.950000px;}
.yf0{bottom:155.700000px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.yda{bottom:161.925120px;}
.y137{bottom:161.987760px;}
.y168{bottom:162.349920px;}
.y1b0{bottom:163.444500px;}
.y1e4{bottom:163.809000px;}
.y187{bottom:164.864880px;}
.y80{bottom:165.705120px;}
.y10b{bottom:168.287040px;}
.ybb{bottom:169.377120px;}
.y12d{bottom:172.257120px;}
.yee{bottom:176.220000px;}
.y231{bottom:177.840000px;}
.y1af{bottom:178.564500px;}
.y1e3{bottom:178.929000px;}
.yef{bottom:181.620000px;}
.yd9{bottom:184.248000px;}
.y136{bottom:184.310640px;}
.y167{bottom:184.490640px;}
.y186{bottom:187.187760px;}
.y7f{bottom:188.028000px;}
.y10a{bottom:190.609920px;}
.yba{bottom:191.700000px;}
.y1ae{bottom:193.882500px;}
.y1e2{bottom:194.224500px;}
.y12c{bottom:194.580000px;}
.y230{bottom:198.720000px;}
.yd8{bottom:206.570880px;}
.y135{bottom:206.633520px;}
.yb5{bottom:206.640000px;}
.y166{bottom:206.813520px;}
.y1ad{bottom:209.002500px;}
.y1e1{bottom:209.344500px;}
.y185{bottom:209.510640px;}
.y12b{bottom:209.520000px;}
.y7e{bottom:210.350880px;}
.y22f{bottom:211.140000px;}
.yb9{bottom:212.032980px;}
.y109{bottom:212.750640px;}
.yed{bottom:213.840000px;}
.yb7{bottom:220.492980px;}
.y1ac{bottom:224.122500px;}
.y1e0{bottom:224.464500px;}
.y129{bottom:228.420000px;}
.yd7{bottom:228.893760px;}
.y134{bottom:228.956400px;}
.yb8{bottom:228.960000px;}
.y165{bottom:229.136400px;}
.y22e{bottom:231.660000px;}
.y184{bottom:231.833520px;}
.y7d{bottom:232.491600px;}
.yec{bottom:234.360000px;}
.y108{bottom:235.073520px;}
.yb4{bottom:237.420000px;}
.y1ab{bottom:239.418000px;}
.y1df{bottom:239.773500px;}
.y128{bottom:247.500000px;}
.yd6{bottom:251.034480px;}
.y133{bottom:251.097120px;}
.y164{bottom:251.459280px;}
.y22d{bottom:252.360000px;}
.y183{bottom:253.974240px;}
.y1aa{bottom:254.538000px;}
.y56{bottom:254.700000px;}
.y7c{bottom:254.814480px;}
.y1de{bottom:254.893500px;}
.yeb{bottom:255.060000px;}
.y107{bottom:257.396400px;}
.yb1{bottom:261.000000px;}
.yb3{bottom:266.392980px;}
.y127{bottom:266.400000px;}
.y45{bottom:268.920000px;}
.y1a9{bottom:269.833500px;}
.y1dd{bottom:270.013500px;}
.y22c{bottom:273.060000px;}
.yd5{bottom:273.357360px;}
.y132{bottom:273.414240px;}
.y163{bottom:273.600000px;}
.yb0{bottom:274.852980px;}
.y34{bottom:274.901040px;}
.yea{bottom:275.580000px;}
.y182{bottom:276.297120px;}
.y55{bottom:276.986160px;}
.y7b{bottom:277.137360px;}
.y106{bottom:279.719280px;}
.yb2{bottom:283.320000px;}
.y1a8{bottom:284.953500px;}
.y126{bottom:285.300000px;}
.y1dc{bottom:285.309000px;}
.y22b{bottom:286.920000px;}
.y161{bottom:288.540000px;}
.y33{bottom:291.097620px;}
.yaf{bottom:291.780000px;}
.yd4{bottom:295.680240px;}
.y131{bottom:295.737120px;}
.ye8{bottom:296.280000px;}
.y181{bottom:298.620000px;}
.y54{bottom:299.309040px;}
.y7a{bottom:299.460240px;}
.y1a7{bottom:300.073500px;}
.y1db{bottom:300.429000px;}
.y162{bottom:301.320000px;}
.ye9{bottom:301.680000px;}
.y105{bottom:301.860000px;}
.y125{bottom:304.200000px;}
.y32{bottom:307.294200px;}
.ye7{bottom:310.140000px;}
.y22a{bottom:310.500000px;}
.y15a{bottom:312.475500px;}
.y180{bottom:313.560000px;}
.yab{bottom:315.360000px;}
.y1a6{bottom:315.369000px;}
.y1da{bottom:315.724500px;}
.y104{bottom:316.980000px;}
.y20d{bottom:317.205000px;}
.yd3{bottom:318.003120px;}
.y79{bottom:321.600960px;}
.y53{bottom:321.631920px;}
.y15f{bottom:322.740000px;}
.y124{bottom:323.280000px;}
.y31{bottom:323.490780px;}
.y159{bottom:327.960000px;}
.yae{bottom:329.212980px;}
.y1a5{bottom:330.489000px;}
.y1d9{bottom:330.844500px;}
.y229{bottom:331.020000px;}
.y17f{bottom:332.460000px;}
.y20c{bottom:332.500500px;}
.ye4{bottom:333.720000px;}
.y160{bottom:335.340000px;}
.y15e{bottom:335.344500px;}
.y103{bottom:335.880000px;}
.yac{bottom:337.680000px;}
.ye6{bottom:339.120000px;}
.y30{bottom:339.687360px;}
.yd2{bottom:340.143840px;}
.y17a{bottom:341.284500px;}
.y46{bottom:342.180000px;}
.y158{bottom:343.080000px;}
.y52{bottom:343.772640px;}
.y78{bottom:343.923840px;}
.ya{bottom:344.680500px;}
.y1a4{bottom:345.609000px;}
.y1d8{bottom:345.964500px;}
.yad{bottom:346.140000px;}
.y20b{bottom:347.620500px;}
.ye3{bottom:347.760000px;}
.y17e{bottom:351.360000px;}
.y228{bottom:351.720000px;}
.y239{bottom:353.700000px;}
.y102{bottom:354.780000px;}
.y2f{bottom:355.883940px;}
.y17c{bottom:356.400000px;}
.y179{bottom:356.580000px;}
.y15b{bottom:356.940000px;}
.y157{bottom:358.200000px;}
.y1a3{bottom:360.904500px;}
.y123{bottom:361.080000px;}
.y1d7{bottom:361.260000px;}
.y15c{bottom:361.800000px;}
.yd1{bottom:362.466720px;}
.y20a{bottom:362.740500px;}
.y51{bottom:366.095520px;}
.y77{bottom:366.246720px;}
.y238{bottom:368.640000px;}
.y15d{bottom:369.540000px;}
.ya6{bottom:369.720000px;}
.y17d{bottom:370.440000px;}
.ye2{bottom:371.340000px;}
.y178{bottom:371.700000px;}
.y2e{bottom:372.080520px;}
.y227{bottom:372.420000px;}
.y237{bottom:373.495500px;}
.y101{bottom:373.680000px;}
.ya8{bottom:375.112980px;}
.y1a2{bottom:376.024500px;}
.y1d6{bottom:376.380000px;}
.y209{bottom:378.036000px;}
.y122{bottom:379.980000px;}
.yaa{bottom:383.572980px;}
.yd0{bottom:384.789600px;}
.yd{bottom:386.490000px;}
.y2d{bottom:388.277100px;}
.y50{bottom:388.418400px;}
.y76{bottom:388.569600px;}
.y17b{bottom:389.340000px;}
.y154{bottom:390.960000px;}
.y1a1{bottom:391.320000px;}
.y1d5{bottom:391.509000px;}
.ye1{bottom:391.860000px;}
.ya7{bottom:392.040000px;}
.y24b{bottom:392.543550px;}
.y100{bottom:392.580000px;}
.y226{bottom:392.940000px;}
.y208{bottom:393.156000px;}
.y9{bottom:395.689500px;}
.y155{bottom:396.000000px;}
.y121{bottom:398.880000px;}
.ya9{bottom:400.500000px;}
.y156{bottom:403.560000px;}
.y2c{bottom:404.473680px;}
.y1a0{bottom:406.467000px;}
.y1d4{bottom:406.804500px;}
.ycf{bottom:407.112480px;}
.y177{bottom:408.240000px;}
.y207{bottom:408.276000px;}
.y75{bottom:410.710320px;}
.y4f{bottom:410.741280px;}
.yff{bottom:411.660000px;}
.ye0{bottom:412.560000px;}
.y225{bottom:413.640000px;}
.y2b{bottom:420.670260px;}
.y11f{bottom:421.020000px;}
.y24a{bottom:421.472250px;}
.y19f{bottom:421.587000px;}
.y1d3{bottom:421.924500px;}
.y206{bottom:423.571500px;}
.ya4{bottom:424.080000px;}
.y152{bottom:425.160000px;}
.y176{bottom:427.140000px;}
.yce{bottom:429.253200px;}
.ya5{bottom:429.480000px;}
.y14e{bottom:430.024500px;}
.yfe{bottom:430.560000px;}
.y4e{bottom:432.882000px;}
.y74{bottom:433.033200px;}
.y120{bottom:433.080000px;}
.y224{bottom:434.160000px;}
.yb{bottom:434.850000px;}
.y2a{bottom:436.866840px;}
.y19e{bottom:436.882500px;}
.y1d2{bottom:437.220000px;}
.y245{bottom:437.253750px;}
.y153{bottom:437.760000px;}
.y151{bottom:437.764500px;}
.y205{bottom:438.691500px;}
.ydf{bottom:439.735500px;}
.y172{bottom:443.524500px;}
.y14d{bottom:445.320000px;}
.y175{bottom:446.040000px;}
.y8{bottom:446.698500px;}
.yfd{bottom:449.460000px;}
.y173{bottom:451.080000px;}
.ycd{bottom:451.576080px;}
.y19d{bottom:452.002500px;}
.y1d1{bottom:452.340000px;}
.y29{bottom:453.063420px;}
.y204{bottom:453.987000px;}
.y223{bottom:454.860000px;}
.y4d{bottom:455.204880px;}
.y73{bottom:455.356080px;}
.yde{bottom:457.920000px;}
.y11e{bottom:458.460000px;}
.y171{bottom:458.820000px;}
.y14f{bottom:459.180000px;}
.ya1{bottom:461.520000px;}
.y246{bottom:461.864250px;}
.y174{bottom:465.120000px;}
.ya3{bottom:467.092980px;}
.y19c{bottom:467.122500px;}
.y1d0{bottom:467.469000px;}
.yfc{bottom:468.360000px;}
.y203{bottom:469.107000px;}
.y28{bottom:469.260000px;}
.y150{bottom:471.960000px;}
.ycc{bottom:473.898960px;}
.ya0{bottom:475.373700px;}
.y222{bottom:475.560000px;}
.y11d{bottom:476.820000px;}
.y4c{bottom:477.527760px;}
.y72{bottom:477.678960px;}
.y19b{bottom:482.418000px;}
.y1cf{bottom:482.764500px;}
.ya2{bottom:484.020000px;}
.y202{bottom:484.227000px;}
.y247{bottom:486.474750px;}
.yfb{bottom:487.260000px;}
.y11{bottom:488.055000px;}
.y9f{bottom:492.480000px;}
.y14b{bottom:493.380000px;}
.y221{bottom:496.080000px;}
.ycb{bottom:496.221840px;}
.y11c{bottom:496.440000px;}
.y19a{bottom:497.538000px;}
.y7{bottom:497.707500px;}
.y1ce{bottom:497.884500px;}
.y14c{bottom:498.420000px;}
.y201{bottom:499.522500px;}
.y71{bottom:499.819680px;}
.y4b{bottom:499.850640px;}
.y170{bottom:502.920000px;}
.y14a{bottom:505.980000px;}
.yfa{bottom:506.340000px;}
.y248{bottom:511.085250px;}
.y11b{bottom:511.560000px;}
.y199{bottom:512.833500px;}
.y1cd{bottom:513.004500px;}
.y200{bottom:514.642500px;}
.y9c{bottom:516.060000px;}
.y21f{bottom:516.780000px;}
.y16e{bottom:517.500000px;}
.yca{bottom:518.362560px;}
.y16f{bottom:521.820000px;}
.y4a{bottom:521.991360px;}
.y70{bottom:522.142560px;}
.y220{bottom:522.180000px;}
.yf9{bottom:525.240000px;}
.y146{bottom:527.580000px;}
.y198{bottom:527.953500px;}
.y1cc{bottom:528.300000px;}
.y1ff{bottom:529.762500px;}
.y9b{bottom:529.912980px;}
.y11a{bottom:530.460000px;}
.y21e{bottom:530.640000px;}
.y149{bottom:532.440000px;}
.y142{bottom:532.444500px;}
.y249{bottom:535.695750px;}
.y12{bottom:538.230000px;}
.y9e{bottom:538.380000px;}
.yf6{bottom:539.640000px;}
.y145{bottom:540.180000px;}
.yc9{bottom:540.685440px;}
.y197{bottom:543.073500px;}
.y1cb{bottom:543.429000px;}
.yf7{bottom:544.140000px;}
.y49{bottom:544.314240px;}
.y6f{bottom:544.465440px;}
.y1fe{bottom:545.058000px;}
.y9a{bottom:546.840000px;}
.y16d{bottom:547.375500px;}
.y141{bottom:547.740000px;}
.y6{bottom:548.716500px;}
.y119{bottom:549.360000px;}
.y21d{bottom:554.220000px;}
.y196{bottom:558.369000px;}
.y1ca{bottom:558.724500px;}
.y1fd{bottom:560.178000px;}
.y144{bottom:561.600000px;}
.y236{bottom:562.320000px;}
.yc8{bottom:563.008320px;}
.y16c{bottom:565.560000px;}
.y48{bottom:566.637120px;}
.y6e{bottom:566.788320px;}
.y118{bottom:568.260000px;}
.yf5{bottom:569.520000px;}
.y95{bottom:570.420000px;}
.y195{bottom:573.489000px;}
.y1c9{bottom:573.844500px;}
.y143{bottom:574.200000px;}
.y21c{bottom:574.920000px;}
.y1fc{bottom:575.473500px;}
.y235{bottom:582.120000px;}
.y99{bottom:584.272980px;}
.yc7{bottom:585.331200px;}
.y117{bottom:587.160000px;}
.yf4{bottom:587.880000px;}
.y194{bottom:588.609000px;}
.y21b{bottom:588.780000px;}
.y6d{bottom:588.929040px;}
.y47{bottom:588.960000px;}
.y1c8{bottom:588.964500px;}
.y1b{bottom:589.605000px;}
.y1fb{bottom:590.593500px;}
.y96{bottom:592.740000px;}
.y13f{bottom:595.800000px;}
.y5{bottom:599.725500px;}
.y98{bottom:601.200000px;}
.y234{bottom:602.820000px;}
.y140{bottom:603.900000px;}
.y193{bottom:603.904500px;}
.y1c7{bottom:604.287000px;}
.y1fa{bottom:605.713500px;}
.y116{bottom:606.240000px;}
.yc6{bottom:607.471920px;}
.y13d{bottom:610.200000px;}
.y6c{bottom:611.251920px;}
.y21a{bottom:612.360000px;}
.y13e{bottom:614.700000px;}
.y233{bottom:618.304500px;}
.y192{bottom:619.024500px;}
.y1c6{bottom:619.407000px;}
.y1f9{bottom:621.009000px;}
.y92{bottom:624.780000px;}
.y115{bottom:625.140000px;}
.y43{bottom:625.320000px;}
.y219{bottom:626.220000px;}
.yc5{bottom:629.794800px;}
.y94{bottom:630.180000px;}
.ye{bottom:631.920000px;}
.y6b{bottom:633.574800px;}
.y191{bottom:634.320000px;}
.y1c5{bottom:634.527000px;}
.y244{bottom:635.806200px;}
.y1f8{bottom:636.129000px;}
.y13c{bottom:640.080000px;}
.y3d{bottom:641.520000px;}
.y112{bottom:644.040000px;}
.y42{bottom:647.646840px;}
.y190{bottom:649.440000px;}
.y218{bottom:649.800000px;}
.y1c4{bottom:649.822500px;}
.y1f7{bottom:651.249000px;}
.yc4{bottom:652.117680px;}
.y6a{bottom:655.897680px;}
.y111{bottom:656.640000px;}
.y13b{bottom:658.440000px;}
.y8c{bottom:662.220000px;}
.y217{bottom:663.840000px;}
.y41{bottom:663.843420px;}
.y18f{bottom:664.569000px;}
.y243{bottom:664.761900px;}
.y1c3{bottom:664.942500px;}
.y1f6{bottom:666.544500px;}
.y8f{bottom:667.612980px;}
.yc3{bottom:674.440560px;}
.y91{bottom:676.072980px;}
.y69{bottom:678.038400px;}
.y18e{bottom:679.864500px;}
.y1c2{bottom:680.238000px;}
.y23a{bottom:680.516400px;}
.y1f5{bottom:681.664500px;}
.y40{bottom:683.098920px;}
.y8e{bottom:684.540000px;}
.y110{bottom:684.715500px;}
.y216{bottom:687.420000px;}
.y90{bottom:693.000000px;}
.y18d{bottom:694.984500px;}
.y1c1{bottom:695.358000px;}
.y3f{bottom:696.240000px;}
.yc2{bottom:696.581280px;}
.y1f4{bottom:696.960000px;}
.y23b{bottom:699.470400px;}
.y68{bottom:700.361280px;}
.y10f{bottom:702.900000px;}
.y215{bottom:707.940000px;}
.y18c{bottom:710.104500px;}
.y1c0{bottom:710.478000px;}
.y1f3{bottom:712.080000px;}
.y8b{bottom:716.580000px;}
.y23c{bottom:718.424400px;}
.yc1{bottom:718.904160px;}
.y67{bottom:722.684160px;}
.y37{bottom:722.700000px;}
.y18b{bottom:725.400000px;}
.y1bf{bottom:725.773500px;}
.y1f2{bottom:727.213500px;}
.y214{bottom:728.640000px;}
.y3c{bottom:731.340000px;}
.y23d{bottom:737.378400px;}
.y1be{bottom:740.893500px;}
.yc0{bottom:741.227040px;}
.y1f1{bottom:743.413500px;}
.y66{bottom:745.007040px;}
.y8a{bottom:745.200000px;}
.y213{bottom:749.160000px;}
.y39{bottom:755.640000px;}
.y1bd{bottom:756.013500px;}
.y23e{bottom:756.332400px;}
.y1f0{bottom:758.533500px;}
.y3a{bottom:762.480000px;}
.ybf{bottom:763.549920px;}
.y89{bottom:766.080000px;}
.y65{bottom:767.147760px;}
.y212{bottom:769.860000px;}
.y35{bottom:771.300000px;}
.y1bc{bottom:771.309000px;}
.y1ef{bottom:773.829000px;}
.y23f{bottom:775.286400px;}
.y4{bottom:778.225500px;}
.y22{bottom:784.800000px;}
.y88{bottom:785.690640px;}
.y1bb{bottom:786.429000px;}
.y1ee{bottom:788.949000px;}
.y64{bottom:789.470640px;}
.y211{bottom:790.560000px;}
.y240{bottom:794.240400px;}
.y27{bottom:794.880000px;}
.y1ba{bottom:801.724500px;}
.y1ed{bottom:804.244500px;}
.y210{bottom:804.420000px;}
.y87{bottom:808.013520px;}
.y63{bottom:811.793520px;}
.y241{bottom:813.194400px;}
.y13{bottom:815.670000px;}
.y1b9{bottom:816.844500px;}
.y1ec{bottom:819.364500px;}
.y26{bottom:823.146480px;}
.y20f{bottom:828.000000px;}
.y86{bottom:830.336400px;}
.y1b8{bottom:831.964500px;}
.y242{bottom:832.148400px;}
.y62{bottom:834.116400px;}
.y1eb{bottom:834.484500px;}
.y1b7{bottom:847.260000px;}
.y1ea{bottom:849.780000px;}
.y25{bottom:851.580000px;}
.y85{bottom:852.659280px;}
.y20e{bottom:855.180000px;}
.y61{bottom:856.257120px;}
.y232{bottom:858.780000px;}
.y1b6{bottom:862.380000px;}
.y1e9{bottom:864.900000px;}
.y84{bottom:874.800000px;}
.y1b5{bottom:877.500000px;}
.y24{bottom:877.860000px;}
.y60{bottom:878.580000px;}
.y1e8{bottom:880.020000px;}
.y5f{bottom:897.120000px;}
.y3{bottom:905.716500px;}
.y57{bottom:912.060000px;}
.y5e{bottom:917.640000px;}
.y59{bottom:925.200000px;}
.y1c{bottom:932.040000px;}
.y5c{bottom:932.760000px;}
.y5b{bottom:935.820000px;}
.y2{bottom:964.228500px;}
.y1{bottom:989.716500px;}
.he{height:4.820625px;}
.h14{height:13.500000px;}
.h1f{height:16.200000px;}
.h39{height:18.178500px;}
.h3a{height:18.180000px;}
.h3d{height:18.360000px;}
.h36{height:19.798500px;}
.h35{height:19.800000px;}
.h2b{height:19.980000px;}
.h3f{height:25.066406px;}
.h25{height:25.308281px;}
.h19{height:27.718594px;}
.h1d{height:29.239805px;}
.h1e{height:29.244125px;}
.h4{height:33.000000px;}
.h3b{height:33.298500px;}
.h40{height:33.300000px;}
.h3c{height:33.480000px;}
.h12{height:33.588984px;}
.h22{height:34.200000px;}
.h1a{height:34.949531px;}
.h26{height:35.907891px;}
.h3e{height:36.571289px;}
.h30{height:36.720000px;}
.h2a{height:37.599609px;}
.h13{height:40.372734px;}
.hd{height:41.479805px;}
.h2c{height:41.610234px;}
.h24{height:45.193359px;}
.h43{height:46.025156px;}
.h27{height:46.122187px;}
.h42{height:46.342617px;}
.h41{height:46.396617px;}
.h23{height:46.432617px;}
.h29{height:46.643555px;}
.h17{height:47.603672px;}
.h15{height:48.600000px;}
.h1b{height:48.909023px;}
.h2e{height:50.013984px;}
.h2f{height:51.385430px;}
.h31{height:53.460000px;}
.h32{height:53.640000px;}
.h2d{height:53.641500px;}
.hb{height:55.437187px;}
.h34{height:56.763281px;}
.h21{height:56.957344px;}
.h28{height:57.216094px;}
.h3{height:58.406250px;}
.h11{height:58.629471px;}
.h10{height:58.655391px;}
.hc{height:59.580000px;}
.h16{height:60.257812px;}
.h18{height:62.309531px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h1c{height:81.180000px;}
.h38{height:83.853984px;}
.h33{height:85.225430px;}
.h37{height:85.945430px;}
.h7{height:115.215000px;}
.hf{height:129.600000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h20{height:356.400000px;}
.ha{height:999.000000px;}
.h9{height:999.360000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w1c{width:24.660000px;}
.w1e{width:30.780000px;}
.w15{width:33.298500px;}
.w17{width:33.300000px;}
.w19{width:33.660000px;}
.w1a{width:33.661500px;}
.w1b{width:35.820000px;}
.w26{width:41.400000px;}
.w10{width:42.480000px;}
.wd{width:42.660000px;}
.w29{width:43.740000px;}
.w2a{width:43.920000px;}
.w2b{width:43.921500px;}
.w24{width:46.080000px;}
.w25{width:46.081500px;}
.w2f{width:49.680000px;}
.w1d{width:52.380000px;}
.w2e{width:52.560000px;}
.w21{width:52.561500px;}
.w1f{width:62.998500px;}
.w20{width:63.000000px;}
.w2c{width:84.240000px;}
.w12{width:94.860000px;}
.w11{width:116.100000px;}
.wb{width:128.880000px;}
.w28{width:133.200000px;}
.w16{width:185.940000px;}
.w14{width:186.300000px;}
.w22{width:186.480000px;}
.w2d{width:212.038500px;}
.w27{width:222.300000px;}
.w23{width:280.078500px;}
.w13{width:296.460000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w18{width:378.000000px;}
.wc{width:425.340000px;}
.w30{width:458.460000px;}
.we{width:489.060000px;}
.wf{width:489.240000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:701.640000px;}
.wa{width:702.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x48{left:1.440000px;}
.x3{left:3.000000px;}
.x40{left:4.500000px;}
.x33{left:6.300000px;}
.xc{left:8.100000px;}
.x3a{left:10.260000px;}
.x5c{left:12.060000px;}
.x42{left:13.140000px;}
.x87{left:15.300000px;}
.x3e{left:16.560000px;}
.x70{left:18.180000px;}
.x7a{left:19.980000px;}
.x7b{left:21.420000px;}
.x5b{left:22.680000px;}
.x30{left:23.940000px;}
.x79{left:25.380000px;}
.x6d{left:27.540000px;}
.x3f{left:29.700000px;}
.x85{left:32.040000px;}
.x7d{left:39.960000px;}
.x74{left:42.120000px;}
.x8e{left:45.540000px;}
.x47{left:48.240000px;}
.x56{left:49.500000px;}
.x22{left:62.820000px;}
.x10{left:72.540000px;}
.xa{left:84.960000px;}
.xd{left:93.060000px;}
.x32{left:96.300000px;}
.x35{left:102.600000px;}
.x1a{left:103.680000px;}
.x8a{left:104.940000px;}
.x67{left:106.020000px;}
.xf{left:108.000000px;}
.x7e{left:110.160000px;}
.x86{left:111.604500px;}
.x45{left:114.300000px;}
.x5e{left:116.820000px;}
.xb{left:120.600000px;}
.x8b{left:125.095500px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x4f{left:133.020000px;}
.x5f{left:138.240000px;}
.x8d{left:146.880000px;}
.x43{left:151.740000px;}
.x8f{left:153.180000px;}
.x50{left:158.580000px;}
.x12{left:160.740000px;}
.x78{left:163.980000px;}
.x94{left:167.547300px;}
.x11{left:172.440000px;}
.x5{left:174.105000px;}
.x93{left:179.380350px;}
.x15{left:181.080000px;}
.x24{left:184.860000px;}
.x31{left:187.380000px;}
.x7f{left:188.460000px;}
.x2{left:191.040000px;}
.x51{left:192.960000px;}
.x71{left:194.215500px;}
.x23{left:198.900000px;}
.x7{left:200.715000px;}
.x5d{left:202.140000px;}
.x90{left:207.900000px;}
.x92{left:209.340000px;}
.x52{left:212.040000px;}
.x34{left:213.300000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x66{left:225.540000px;}
.x46{left:227.340000px;}
.x17{left:228.600000px;}
.x61{left:231.840000px;}
.x25{left:233.100000px;}
.x83{left:245.880000px;}
.x37{left:248.580000px;}
.x76{left:250.920000px;}
.x80{left:252.900000px;}
.x57{left:255.420000px;}
.x13{left:256.860000px;}
.x49{left:261.720000px;}
.x14{left:263.880000px;}
.x44{left:271.080000px;}
.x16{left:276.300000px;}
.x19{left:278.640000px;}
.x39{left:283.320000px;}
.x88{left:287.100000px;}
.x69{left:293.580000px;}
.x4a{left:296.280000px;}
.x7c{left:297.360000px;}
.x27{left:302.940000px;}
.x29{left:308.520000px;}
.x36{left:315.171180px;}
.x3b{left:317.340000px;}
.x58{left:319.140000px;}
.x18{left:323.640000px;}
.x60{left:325.440000px;}
.x4b{left:330.660000px;}
.x6a{left:338.220000px;}
.x73{left:340.020000px;}
.x1b{left:348.840000px;}
.x38{left:350.653500px;}
.x26{left:365.580000px;}
.x62{left:372.240000px;}
.x1d{left:374.580000px;}
.x41{left:381.060000px;}
.x59{left:382.860000px;}
.x75{left:384.660000px;}
.x81{left:386.640000px;}
.x2b{left:391.680000px;}
.x84{left:393.480000px;}
.x4c{left:399.420000px;}
.x8c{left:402.300000px;}
.x89{left:405.540000px;}
.x1f{left:413.280000px;}
.x63{left:419.040000px;}
.x2d{left:423.720000px;}
.x6b{left:427.500000px;}
.x28{left:433.440000px;}
.x77{left:436.140000px;}
.x2a{left:444.960000px;}
.x53{left:446.580000px;}
.x64{left:465.840000px;}
.x4d{left:468.360000px;}
.x68{left:472.140000px;}
.x72{left:476.815500px;}
.x82{left:479.880000px;}
.x21{left:486.000000px;}
.x1c{left:489.060000px;}
.x6c{left:495.360000px;}
.x5a{left:499.680000px;}
.x4e{left:502.740000px;}
.x54{left:507.600000px;}
.x1e{left:510.480000px;}
.x65{left:512.640000px;}
.x6e{left:516.780000px;}
.xe{left:518.400000px;}
.x2c{left:527.580000px;}
.x3c{left:538.020000px;}
.x20{left:549.540000px;}
.x55{left:552.960000px;}
.x2e{left:559.620000px;}
.x6f{left:561.420000px;}
.x3d{left:572.220000px;}
.x2f{left:574.200000px;}
.x91{left:606.060000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v7{vertical-align:-13.440000pt;}
.v3{vertical-align:-10.880000pt;}
.v8{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v6{vertical-align:13.642240pt;}
.v1{vertical-align:24.320000pt;}
.v5{vertical-align:30.080000pt;}
.ls82{letter-spacing:-2.531840pt;}
.ls7a{letter-spacing:-1.943040pt;}
.ls91{letter-spacing:-1.440000pt;}
.lsac{letter-spacing:-1.392000pt;}
.ls4e{letter-spacing:-1.295360pt;}
.ls93{letter-spacing:-0.912000pt;}
.ls79{letter-spacing:-0.883200pt;}
.ls30{letter-spacing:-0.824320pt;}
.ls94{letter-spacing:-0.816000pt;}
.ls96{letter-spacing:-0.768000pt;}
.ls92{letter-spacing:-0.720000pt;}
.ls31{letter-spacing:-0.706560pt;}
.ls35{letter-spacing:-0.647680pt;}
.lsa4{letter-spacing:-0.624000pt;}
.ls33{letter-spacing:-0.588800pt;}
.ls32{letter-spacing:-0.529920pt;}
.lsb2{letter-spacing:-0.528000pt;}
.ls95{letter-spacing:-0.480000pt;}
.lsa5{letter-spacing:-0.416000pt;}
.ls56{letter-spacing:-0.412160pt;}
.lsb3{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.353280pt;}
.ls97{letter-spacing:-0.352000pt;}
.lsb1{letter-spacing:-0.336000pt;}
.ls18{letter-spacing:-0.303360pt;}
.ls13{letter-spacing:-0.294400pt;}
.ls3f{letter-spacing:-0.288000pt;}
.ls45{letter-spacing:-0.265600pt;}
.ls11{letter-spacing:-0.257280pt;}
.ls1a{letter-spacing:-0.252800pt;}
.ls3b{letter-spacing:-0.240000pt;}
.ls1d{letter-spacing:-0.235520pt;}
.ls2f{letter-spacing:-0.222720pt;}
.ls10{letter-spacing:-0.214400pt;}
.ls42{letter-spacing:-0.212480pt;}
.ls64{letter-spacing:-0.192000pt;}
.ls2d{letter-spacing:-0.185600pt;}
.ls14{letter-spacing:-0.176640pt;}
.ls47{letter-spacing:-0.159360pt;}
.ls29{letter-spacing:-0.148480pt;}
.ls68{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.128640pt;}
.ls12{letter-spacing:-0.117760pt;}
.ls19{letter-spacing:-0.111360pt;}
.ls44{letter-spacing:-0.106240pt;}
.ls27{letter-spacing:-0.096000pt;}
.ls2b{letter-spacing:-0.074240pt;}
.ls1c{letter-spacing:-0.058880pt;}
.lsae{letter-spacing:-0.053120pt;}
.ls3a{letter-spacing:-0.048000pt;}
.ls2a{letter-spacing:-0.037120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.013440pt;}
.ls6f{letter-spacing:0.016000pt;}
.ls54{letter-spacing:0.017664pt;}
.ls6{letter-spacing:0.028800pt;}
.ls17{letter-spacing:0.042880pt;}
.ls72{letter-spacing:0.043520pt;}
.ls63{letter-spacing:0.046720pt;}
.ls78{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.051200pt;}
.lsa6{letter-spacing:0.052800pt;}
.ls36{letter-spacing:0.053120pt;}
.lse{letter-spacing:0.058880pt;}
.ls7{letter-spacing:0.064000pt;}
.lsa7{letter-spacing:0.081600pt;}
.ls8d{letter-spacing:0.086400pt;}
.ls89{letter-spacing:0.091200pt;}
.ls3c{letter-spacing:0.096000pt;}
.ls40{letter-spacing:0.106240pt;}
.ls28{letter-spacing:0.107520pt;}
.ls1f{letter-spacing:0.117760pt;}
.lsa1{letter-spacing:0.120000pt;}
.ls7c{letter-spacing:0.128000pt;}
.ls86{letter-spacing:0.135424pt;}
.ls9d{letter-spacing:0.139200pt;}
.ls3d{letter-spacing:0.144000pt;}
.lsa8{letter-spacing:0.148800pt;}
.lsa2{letter-spacing:0.153600pt;}
.lsa9{letter-spacing:0.158400pt;}
.ls5{letter-spacing:0.158720pt;}
.ls77{letter-spacing:0.158976pt;}
.ls41{letter-spacing:0.159360pt;}
.ls9{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.161280pt;}
.ls8e{letter-spacing:0.163200pt;}
.lsd{letter-spacing:0.171520pt;}
.ls8f{letter-spacing:0.172800pt;}
.lsf{letter-spacing:0.176640pt;}
.ls99{letter-spacing:0.177600pt;}
.ls2e{letter-spacing:0.185600pt;}
.lsaa{letter-spacing:0.187200pt;}
.ls98{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.193280pt;}
.lsc{letter-spacing:0.194560pt;}
.ls9a{letter-spacing:0.201600pt;}
.ls8b{letter-spacing:0.206400pt;}
.ls4{letter-spacing:0.211200pt;}
.ls43{letter-spacing:0.212480pt;}
.ls3{letter-spacing:0.213760pt;}
.ls8a{letter-spacing:0.220800pt;}
.ls90{letter-spacing:0.224000pt;}
.ls22{letter-spacing:0.235520pt;}
.ls70{letter-spacing:0.240000pt;}
.ls8c{letter-spacing:0.244800pt;}
.ls46{letter-spacing:0.265600pt;}
.lsa3{letter-spacing:0.273600pt;}
.ls3e{letter-spacing:0.288000pt;}
.ls48{letter-spacing:0.294400pt;}
.ls2c{letter-spacing:0.296960pt;}
.ls1b{letter-spacing:0.303360pt;}
.lsaf{letter-spacing:0.318720pt;}
.lsa{letter-spacing:0.320000pt;}
.ls74{letter-spacing:0.336000pt;}
.ls7d{letter-spacing:0.352000pt;}
.ls1e{letter-spacing:0.368000pt;}
.ls9b{letter-spacing:0.384000pt;}
.ls9c{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.510720pt;}
.ls9e{letter-spacing:0.528000pt;}
.ls53{letter-spacing:0.647680pt;}
.ls9f{letter-spacing:0.672000pt;}
.lsa0{letter-spacing:0.960000pt;}
.ls80{letter-spacing:1.171712pt;}
.ls51{letter-spacing:1.236480pt;}
.ls26{letter-spacing:1.295360pt;}
.ls84{letter-spacing:1.931264pt;}
.ls4c{letter-spacing:1.943040pt;}
.ls4a{letter-spacing:2.531840pt;}
.ls87{letter-spacing:2.590720pt;}
.ls4b{letter-spacing:3.179520pt;}
.ls23{letter-spacing:3.827200pt;}
.ls24{letter-spacing:3.833088pt;}
.ls39{letter-spacing:4.474880pt;}
.ls4f{letter-spacing:5.122560pt;}
.ls21{letter-spacing:5.770240pt;}
.ls85{letter-spacing:6.388480pt;}
.ls34{letter-spacing:6.417920pt;}
.ls20{letter-spacing:7.065600pt;}
.ls52{letter-spacing:7.654400pt;}
.ls50{letter-spacing:8.302080pt;}
.ls83{letter-spacing:9.597440pt;}
.ls55{letter-spacing:10.245120pt;}
.ls57{letter-spacing:11.540480pt;}
.ls25{letter-spacing:12.188160pt;}
.ls4d{letter-spacing:14.720000pt;}
.ls88{letter-spacing:14.725888pt;}
.ls81{letter-spacing:15.367680pt;}
.ls67{letter-spacing:17.899520pt;}
.ls49{letter-spacing:19.842560pt;}
.ls59{letter-spacing:27.061120pt;}
.ls62{letter-spacing:27.628800pt;}
.ls5b{letter-spacing:27.660800pt;}
.ls6e{letter-spacing:30.256000pt;}
.ls7f{letter-spacing:43.056000pt;}
.ls38{letter-spacing:51.384320pt;}
.ls5d{letter-spacing:52.004480pt;}
.ls5f{letter-spacing:52.641920pt;}
.ls7e{letter-spacing:65.424000pt;}
.ls75{letter-spacing:73.776000pt;}
.ls7b{letter-spacing:81.456000pt;}
.ls73{letter-spacing:82.736000pt;}
.ls76{letter-spacing:85.296000pt;}
.ls6d{letter-spacing:90.400000pt;}
.ls6c{letter-spacing:102.544000pt;}
.ls66{letter-spacing:103.670016pt;}
.ls71{letter-spacing:103.687680pt;}
.ls65{letter-spacing:108.162560pt;}
.ls69{letter-spacing:114.096000pt;}
.ls6b{letter-spacing:115.376000pt;}
.ls6a{letter-spacing:126.224000pt;}
.lsb0{letter-spacing:199.680000pt;}
.ls61{letter-spacing:224.166400pt;}
.ls5a{letter-spacing:365.607040pt;}
.ls58{letter-spacing:403.340160pt;}
.ls5c{letter-spacing:455.822720pt;}
.ls5e{letter-spacing:473.117440pt;}
.ls60{letter-spacing:513.440000pt;}
.lsad{letter-spacing:753.251840pt;}
.lsab{letter-spacing:753.280000pt;}
.ws3{word-spacing:-18.720000pt;}
.wsa8{word-spacing:-17.899520pt;}
.ws0{word-spacing:-16.874667pt;}
.wsc{word-spacing:-16.000000pt;}
.ws7f{word-spacing:-15.014400pt;}
.ws82{word-spacing:-14.896640pt;}
.ws26{word-spacing:-14.837760pt;}
.wsf{word-spacing:-14.778880pt;}
.ws29{word-spacing:-14.720000pt;}
.ws27{word-spacing:-14.661120pt;}
.ws81{word-spacing:-14.602240pt;}
.ws28{word-spacing:-14.543360pt;}
.ws80{word-spacing:-14.484480pt;}
.ws5{word-spacing:-14.425600pt;}
.ws4{word-spacing:-14.366720pt;}
.ws84{word-spacing:-14.307840pt;}
.ws2a{word-spacing:-14.190080pt;}
.ws6c{word-spacing:-14.131200pt;}
.ws6b{word-spacing:-14.072320pt;}
.ws83{word-spacing:-13.895680pt;}
.wsde{word-spacing:-13.598720pt;}
.ws54{word-spacing:-13.545600pt;}
.ws53{word-spacing:-13.439360pt;}
.ws51{word-spacing:-13.386240pt;}
.ws50{word-spacing:-13.333120pt;}
.wsdd{word-spacing:-13.226880pt;}
.ws9c{word-spacing:-13.173760pt;}
.ws55{word-spacing:-13.120640pt;}
.ws52{word-spacing:-13.067520pt;}
.ws56{word-spacing:-13.014400pt;}
.wse{word-spacing:-12.943360pt;}
.wsb{word-spacing:-12.387200pt;}
.ws9{word-spacing:-12.336640pt;}
.wsb7{word-spacing:-12.336000pt;}
.wsab{word-spacing:-12.240000pt;}
.wsac{word-spacing:-12.144000pt;}
.wsc9{word-spacing:-12.096000pt;}
.wsb5{word-spacing:-12.048000pt;}
.ws22{word-spacing:-12.000000pt;}
.ws4e{word-spacing:-11.952000pt;}
.ws4f{word-spacing:-11.904000pt;}
.wsa6{word-spacing:-11.856000pt;}
.wsa4{word-spacing:-11.808000pt;}
.wsa5{word-spacing:-11.760000pt;}
.wsad{word-spacing:-11.712000pt;}
.wse7{word-spacing:-11.616000pt;}
.wsd7{word-spacing:-11.376000pt;}
.wscb{word-spacing:-11.280000pt;}
.wsd9{word-spacing:-11.232000pt;}
.ws8{word-spacing:-10.762880pt;}
.ws6{word-spacing:-10.591360pt;}
.ws7{word-spacing:-10.505600pt;}
.ws2{word-spacing:-10.462720pt;}
.wsd{word-spacing:-9.280000pt;}
.ws24{word-spacing:-9.242880pt;}
.wsa{word-spacing:-9.168640pt;}
.ws25{word-spacing:-9.094400pt;}
.wscd{word-spacing:-8.320000pt;}
.wsb2{word-spacing:-8.302080pt;}
.wscc{word-spacing:-8.288000pt;}
.wsca{word-spacing:-8.224000pt;}
.wsb6{word-spacing:-8.000000pt;}
.wsce{word-spacing:-7.648000pt;}
.wsd8{word-spacing:-7.584000pt;}
.ws23{word-spacing:-6.827520pt;}
.ws48{word-spacing:-6.417920pt;}
.ws7d{word-spacing:-5.299200pt;}
.wsb3{word-spacing:-4.474880pt;}
.wsb1{word-spacing:-3.650560pt;}
.ws7e{word-spacing:-3.356160pt;}
.ws4c{word-spacing:-3.297280pt;}
.ws36{word-spacing:-3.238400pt;}
.ws3d{word-spacing:-3.120640pt;}
.wsbe{word-spacing:-3.002880pt;}
.ws32{word-spacing:-2.590720pt;}
.ws86{word-spacing:-2.472960pt;}
.ws34{word-spacing:-2.355200pt;}
.wscf{word-spacing:-2.296320pt;}
.ws76{word-spacing:-2.001920pt;}
.wsa0{word-spacing:-1.884160pt;}
.ws73{word-spacing:-1.766400pt;}
.ws57{word-spacing:-1.536000pt;}
.ws1f{word-spacing:-1.354240pt;}
.ws9a{word-spacing:-1.295360pt;}
.ws6d{word-spacing:-1.236480pt;}
.ws8e{word-spacing:-1.118720pt;}
.ws93{word-spacing:-1.059840pt;}
.ws96{word-spacing:-0.942080pt;}
.wsbd{word-spacing:-0.824320pt;}
.ws5a{word-spacing:-0.706560pt;}
.ws69{word-spacing:-0.588800pt;}
.ws13{word-spacing:-0.529920pt;}
.ws15{word-spacing:-0.471040pt;}
.ws97{word-spacing:-0.412160pt;}
.wsdb{word-spacing:-0.384000pt;}
.wsd2{word-spacing:-0.336000pt;}
.ws19{word-spacing:-0.303360pt;}
.ws2f{word-spacing:-0.296960pt;}
.wsa1{word-spacing:-0.288000pt;}
.ws63{word-spacing:-0.265600pt;}
.wsd0{word-spacing:-0.192000pt;}
.ws30{word-spacing:-0.185600pt;}
.wsc1{word-spacing:-0.176640pt;}
.ws5d{word-spacing:-0.159360pt;}
.ws59{word-spacing:-0.144000pt;}
.ws33{word-spacing:-0.117760pt;}
.ws62{word-spacing:-0.106240pt;}
.ws58{word-spacing:-0.096000pt;}
.ws1a{word-spacing:-0.058880pt;}
.ws5e{word-spacing:-0.053120pt;}
.ws1{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.037120pt;}
.wsa3{word-spacing:0.053120pt;}
.ws37{word-spacing:0.058880pt;}
.ws2e{word-spacing:0.074240pt;}
.ws2b{word-spacing:0.096000pt;}
.ws64{word-spacing:0.106240pt;}
.ws12{word-spacing:0.117760pt;}
.ws17{word-spacing:0.128640pt;}
.wsb9{word-spacing:0.144000pt;}
.ws5c{word-spacing:0.159360pt;}
.ws16{word-spacing:0.176640pt;}
.wsae{word-spacing:0.192000pt;}
.ws65{word-spacing:0.212480pt;}
.ws10{word-spacing:0.214400pt;}
.ws31{word-spacing:0.222720pt;}
.ws1c{word-spacing:0.235520pt;}
.wsaf{word-spacing:0.240000pt;}
.ws11{word-spacing:0.257280pt;}
.ws61{word-spacing:0.265600pt;}
.wsb8{word-spacing:0.288000pt;}
.ws14{word-spacing:0.294400pt;}
.ws18{word-spacing:0.303360pt;}
.wsa2{word-spacing:0.336000pt;}
.ws9b{word-spacing:0.353280pt;}
.ws5f{word-spacing:0.371840pt;}
.wsb0{word-spacing:0.384000pt;}
.wsc8{word-spacing:0.412160pt;}
.ws5b{word-spacing:0.432000pt;}
.wsd4{word-spacing:0.480000pt;}
.ws2c{word-spacing:0.482560pt;}
.wse8{word-spacing:0.528000pt;}
.ws44{word-spacing:0.529920pt;}
.ws46{word-spacing:0.588800pt;}
.ws4a{word-spacing:0.647680pt;}
.ws3e{word-spacing:0.706560pt;}
.wsd5{word-spacing:0.768000pt;}
.wsd6{word-spacing:0.816000pt;}
.ws35{word-spacing:0.824320pt;}
.wsba{word-spacing:0.883200pt;}
.ws66{word-spacing:0.903040pt;}
.wsd3{word-spacing:0.912000pt;}
.ws87{word-spacing:1.000960pt;}
.ws60{word-spacing:1.009280pt;}
.wsda{word-spacing:1.056000pt;}
.wsbc{word-spacing:1.118720pt;}
.ws8b{word-spacing:1.236480pt;}
.ws75{word-spacing:1.295360pt;}
.ws95{word-spacing:1.354240pt;}
.wsdc{word-spacing:1.392000pt;}
.wsd1{word-spacing:1.440000pt;}
.ws72{word-spacing:1.472000pt;}
.ws94{word-spacing:1.530880pt;}
.wsc2{word-spacing:1.825280pt;}
.ws8d{word-spacing:1.884160pt;}
.ws78{word-spacing:2.001920pt;}
.ws77{word-spacing:2.119680pt;}
.ws41{word-spacing:2.531840pt;}
.ws1b{word-spacing:2.649600pt;}
.ws40{word-spacing:2.767360pt;}
.wsa7{word-spacing:2.826240pt;}
.ws43{word-spacing:3.120640pt;}
.ws45{word-spacing:3.238400pt;}
.ws74{word-spacing:3.356160pt;}
.ws47{word-spacing:3.768320pt;}
.ws3a{word-spacing:4.003840pt;}
.ws4d{word-spacing:4.180480pt;}
.wsc7{word-spacing:4.416000pt;}
.ws6a{word-spacing:4.533760pt;}
.ws70{word-spacing:4.651520pt;}
.ws38{word-spacing:5.063680pt;}
.ws8f{word-spacing:5.181440pt;}
.ws20{word-spacing:5.299200pt;}
.ws49{word-spacing:5.534720pt;}
.ws90{word-spacing:5.711360pt;}
.ws91{word-spacing:5.829120pt;}
.ws85{word-spacing:5.946880pt;}
.ws1e{word-spacing:6.359040pt;}
.ws7c{word-spacing:6.476800pt;}
.ws92{word-spacing:6.594560pt;}
.ws68{word-spacing:6.771200pt;}
.ws79{word-spacing:7.006720pt;}
.ws3c{word-spacing:7.124480pt;}
.ws3b{word-spacing:7.242240pt;}
.ws67{word-spacing:7.595520pt;}
.wsaa{word-spacing:7.654400pt;}
.wsbb{word-spacing:7.831040pt;}
.ws99{word-spacing:7.889920pt;}
.ws1d{word-spacing:8.243200pt;}
.ws8c{word-spacing:8.360960pt;}
.ws89{word-spacing:8.478720pt;}
.ws39{word-spacing:8.890880pt;}
.ws8a{word-spacing:9.008640pt;}
.wsb4{word-spacing:9.126400pt;}
.wsc6{word-spacing:9.538560pt;}
.ws71{word-spacing:9.656320pt;}
.ws9f{word-spacing:10.186240pt;}
.ws88{word-spacing:10.304000pt;}
.ws98{word-spacing:10.421760pt;}
.wsbf{word-spacing:10.833920pt;}
.ws9e{word-spacing:11.481600pt;}
.ws6f{word-spacing:11.599360pt;}
.ws9d{word-spacing:11.717120pt;}
.wsc4{word-spacing:12.129280pt;}
.ws42{word-spacing:12.247040pt;}
.ws21{word-spacing:12.364800pt;}
.ws3f{word-spacing:12.718080pt;}
.wsa9{word-spacing:12.835840pt;}
.ws4b{word-spacing:13.365760pt;}
.wsc0{word-spacing:13.601280pt;}
.ws7b{word-spacing:14.661120pt;}
.ws7a{word-spacing:15.308800pt;}
.wsc3{word-spacing:17.487360pt;}
.ws6e{word-spacing:19.901440pt;}
.wsc5{word-spacing:28.733440pt;}
.wse3{word-spacing:38.352000pt;}
.wse2{word-spacing:44.928000pt;}
.wsdf{word-spacing:48.849600pt;}
.wse1{word-spacing:49.248000pt;}
.wse0{word-spacing:51.873600pt;}
.wse4{word-spacing:56.304000pt;}
.wse6{word-spacing:58.238400pt;}
.wse5{word-spacing:66.240000pt;}
._23{margin-left:-1476.944000pt;}
._1c{margin-left:-19.282005pt;}
._1a{margin-left:-17.993728pt;}
._1b{margin-left:-16.786688pt;}
._17{margin-left:-10.685525pt;}
._21{margin-left:-8.561451pt;}
._22{margin-left:-7.605803pt;}
._2{margin-left:-6.536533pt;}
._16{margin-left:-5.010688pt;}
._3{margin-left:-3.808000pt;}
._13{margin-left:-2.777685pt;}
._1{margin-left:-1.774933pt;}
._4{width:0.986240pt;}
._9{width:2.063744pt;}
._5{width:3.238400pt;}
._0{width:4.966400pt;}
._6{width:6.256213pt;}
._d{width:7.707392pt;}
._e{width:8.678912pt;}
._11{width:9.568299pt;}
._12{width:10.626645pt;}
._10{width:11.534293pt;}
._f{width:12.447232pt;}
._20{width:13.527680pt;}
._a{width:16.433408pt;}
._b{width:17.501483pt;}
._15{width:19.424512pt;}
._7{width:21.026048pt;}
._8{width:22.265173pt;}
._1e{width:52.448000pt;}
._2c{width:56.206080pt;}
._1f{width:57.264000pt;}
._1d{width:78.240000pt;}
._24{width:89.552000pt;}
._28{width:103.728000pt;}
._29{width:105.504000pt;}
._18{width:107.674240pt;}
._27{width:116.400000pt;}
._26{width:124.464000pt;}
._25{width:134.368000pt;}
._14{width:146.434560pt;}
._c{width:150.732800pt;}
._19{width:154.419840pt;}
._2d{width:163.515093pt;}
._2a{width:166.885867pt;}
._2b{width:168.459200pt;}
.fs5{font-size:5.120000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:29.440000pt;}
.fse{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fsd{font-size:53.120000pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs6{font-size:74.880000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.880000pt;}
.y1e{bottom:4.000000pt;}
.y148{bottom:4.320000pt;}
.yf8{bottom:4.480000pt;}
.y12a{bottom:4.640000pt;}
.y97{bottom:4.800000pt;}
.y5d{bottom:4.960000pt;}
.y44{bottom:5.280000pt;}
.yc{bottom:7.146667pt;}
.y114{bottom:11.200000pt;}
.y58{bottom:11.680000pt;}
.yb6{bottom:12.320000pt;}
.ye5{bottom:12.480000pt;}
.y147{bottom:17.920000pt;}
.y113{bottom:18.080000pt;}
.y5a{bottom:18.400000pt;}
.y93{bottom:19.840000pt;}
.y38{bottom:29.280000pt;}
.y9d{bottom:34.720000pt;}
.y8d{bottom:34.880000pt;}
.y3b{bottom:35.360000pt;}
.y21{bottom:47.680000pt;}
.y1d{bottom:48.800000pt;}
.y1a{bottom:61.786667pt;}
.y3e{bottom:65.760000pt;}
.y20{bottom:66.084320pt;}
.y1f{bottom:78.080000pt;}
.y19{bottom:81.413333pt;}
.yf3{bottom:83.360000pt;}
.ydd{bottom:84.567680pt;}
.y13a{bottom:84.623360pt;}
.y16b{bottom:84.783360pt;}
.y18a{bottom:87.180800pt;}
.y83{bottom:87.927680pt;}
.y14{bottom:88.706667pt;}
.y10e{bottom:90.222720pt;}
.ybe{bottom:91.191680pt;}
.y1b4{bottom:91.204000pt;}
.y130{bottom:93.751680pt;}
.y18{bottom:101.040000pt;}
.yf2{bottom:101.760000pt;}
.y23{bottom:102.560000pt;}
.ydc{bottom:104.410240pt;}
.y139{bottom:104.465920pt;}
.y16a{bottom:104.625920pt;}
.y1b3{bottom:104.808000pt;}
.y1e7{bottom:105.132000pt;}
.y189{bottom:107.023360pt;}
.y82{bottom:107.770240pt;}
.y10d{bottom:109.903360pt;}
.ybd{bottom:110.872320pt;}
.y12f{bottom:113.594240pt;}
.y1b2{bottom:118.248000pt;}
.y1e6{bottom:118.572000pt;}
.y10{bottom:119.053333pt;}
.yf1{bottom:120.000000pt;}
.y17{bottom:120.666667pt;}
.ydb{bottom:124.252800pt;}
.y138{bottom:124.308480pt;}
.y169{bottom:124.468480pt;}
.y188{bottom:126.865920pt;}
.y81{bottom:127.450880pt;}
.y10c{bottom:129.745920pt;}
.ybc{bottom:130.714880pt;}
.y1b1{bottom:131.844000pt;}
.y1e5{bottom:132.012000pt;}
.y12e{bottom:133.436800pt;}
.y15{bottom:137.733333pt;}
.yf0{bottom:138.400000pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.yda{bottom:143.933440pt;}
.y137{bottom:143.989120pt;}
.y168{bottom:144.311040pt;}
.y1b0{bottom:145.284000pt;}
.y1e4{bottom:145.608000pt;}
.y187{bottom:146.546560pt;}
.y80{bottom:147.293440pt;}
.y10b{bottom:149.588480pt;}
.ybb{bottom:150.557440pt;}
.y12d{bottom:153.117440pt;}
.yee{bottom:156.640000pt;}
.y231{bottom:158.080000pt;}
.y1af{bottom:158.724000pt;}
.y1e3{bottom:159.048000pt;}
.yef{bottom:161.440000pt;}
.yd9{bottom:163.776000pt;}
.y136{bottom:163.831680pt;}
.y167{bottom:163.991680pt;}
.y186{bottom:166.389120pt;}
.y7f{bottom:167.136000pt;}
.y10a{bottom:169.431040pt;}
.yba{bottom:170.400000pt;}
.y1ae{bottom:172.340000pt;}
.y1e2{bottom:172.644000pt;}
.y12c{bottom:172.960000pt;}
.y230{bottom:176.640000pt;}
.yd8{bottom:183.618560pt;}
.y135{bottom:183.674240pt;}
.yb5{bottom:183.680000pt;}
.y166{bottom:183.834240pt;}
.y1ad{bottom:185.780000pt;}
.y1e1{bottom:186.084000pt;}
.y185{bottom:186.231680pt;}
.y12b{bottom:186.240000pt;}
.y7e{bottom:186.978560pt;}
.y22f{bottom:187.680000pt;}
.yb9{bottom:188.473760pt;}
.y109{bottom:189.111680pt;}
.yed{bottom:190.080000pt;}
.yb7{bottom:195.993760pt;}
.y1ac{bottom:199.220000pt;}
.y1e0{bottom:199.524000pt;}
.y129{bottom:203.040000pt;}
.yd7{bottom:203.461120pt;}
.y134{bottom:203.516800pt;}
.yb8{bottom:203.520000pt;}
.y165{bottom:203.676800pt;}
.y22e{bottom:205.920000pt;}
.y184{bottom:206.074240pt;}
.y7d{bottom:206.659200pt;}
.yec{bottom:208.320000pt;}
.y108{bottom:208.954240pt;}
.yb4{bottom:211.040000pt;}
.y1ab{bottom:212.816000pt;}
.y1df{bottom:213.132000pt;}
.y128{bottom:220.000000pt;}
.yd6{bottom:223.141760pt;}
.y133{bottom:223.197440pt;}
.y164{bottom:223.519360pt;}
.y22d{bottom:224.320000pt;}
.y183{bottom:225.754880pt;}
.y1aa{bottom:226.256000pt;}
.y56{bottom:226.400000pt;}
.y7c{bottom:226.501760pt;}
.y1de{bottom:226.572000pt;}
.yeb{bottom:226.720000pt;}
.y107{bottom:228.796800pt;}
.yb1{bottom:232.000000pt;}
.yb3{bottom:236.793760pt;}
.y127{bottom:236.800000pt;}
.y45{bottom:239.040000pt;}
.y1a9{bottom:239.852000pt;}
.y1dd{bottom:240.012000pt;}
.y22c{bottom:242.720000pt;}
.yd5{bottom:242.984320pt;}
.y132{bottom:243.034880pt;}
.y163{bottom:243.200000pt;}
.yb0{bottom:244.313760pt;}
.y34{bottom:244.356480pt;}
.yea{bottom:244.960000pt;}
.y182{bottom:245.597440pt;}
.y55{bottom:246.209920pt;}
.y7b{bottom:246.344320pt;}
.y106{bottom:248.639360pt;}
.yb2{bottom:251.840000pt;}
.y1a8{bottom:253.292000pt;}
.y126{bottom:253.600000pt;}
.y1dc{bottom:253.608000pt;}
.y22b{bottom:255.040000pt;}
.y161{bottom:256.480000pt;}
.y33{bottom:258.753440pt;}
.yaf{bottom:259.360000pt;}
.yd4{bottom:262.826880pt;}
.y131{bottom:262.877440pt;}
.ye8{bottom:263.360000pt;}
.y181{bottom:265.440000pt;}
.y54{bottom:266.052480pt;}
.y7a{bottom:266.186880pt;}
.y1a7{bottom:266.732000pt;}
.y1db{bottom:267.048000pt;}
.y162{bottom:267.840000pt;}
.ye9{bottom:268.160000pt;}
.y105{bottom:268.320000pt;}
.y125{bottom:270.400000pt;}
.y32{bottom:273.150400pt;}
.ye7{bottom:275.680000pt;}
.y22a{bottom:276.000000pt;}
.y15a{bottom:277.756000pt;}
.y180{bottom:278.720000pt;}
.yab{bottom:280.320000pt;}
.y1a6{bottom:280.328000pt;}
.y1da{bottom:280.644000pt;}
.y104{bottom:281.760000pt;}
.y20d{bottom:281.960000pt;}
.yd3{bottom:282.669440pt;}
.y79{bottom:285.867520pt;}
.y53{bottom:285.895040pt;}
.y15f{bottom:286.880000pt;}
.y124{bottom:287.360000pt;}
.y31{bottom:287.547360pt;}
.y159{bottom:291.520000pt;}
.yae{bottom:292.633760pt;}
.y1a5{bottom:293.768000pt;}
.y1d9{bottom:294.084000pt;}
.y229{bottom:294.240000pt;}
.y17f{bottom:295.520000pt;}
.y20c{bottom:295.556000pt;}
.ye4{bottom:296.640000pt;}
.y160{bottom:298.080000pt;}
.y15e{bottom:298.084000pt;}
.y103{bottom:298.560000pt;}
.yac{bottom:300.160000pt;}
.ye6{bottom:301.440000pt;}
.y30{bottom:301.944320pt;}
.yd2{bottom:302.350080pt;}
.y17a{bottom:303.364000pt;}
.y46{bottom:304.160000pt;}
.y158{bottom:304.960000pt;}
.y52{bottom:305.575680pt;}
.y78{bottom:305.710080pt;}
.ya{bottom:306.382667pt;}
.y1a4{bottom:307.208000pt;}
.y1d8{bottom:307.524000pt;}
.yad{bottom:307.680000pt;}
.y20b{bottom:308.996000pt;}
.ye3{bottom:309.120000pt;}
.y17e{bottom:312.320000pt;}
.y228{bottom:312.640000pt;}
.y239{bottom:314.400000pt;}
.y102{bottom:315.360000pt;}
.y2f{bottom:316.341280pt;}
.y17c{bottom:316.800000pt;}
.y179{bottom:316.960000pt;}
.y15b{bottom:317.280000pt;}
.y157{bottom:318.400000pt;}
.y1a3{bottom:320.804000pt;}
.y123{bottom:320.960000pt;}
.y1d7{bottom:321.120000pt;}
.y15c{bottom:321.600000pt;}
.yd1{bottom:322.192640pt;}
.y20a{bottom:322.436000pt;}
.y51{bottom:325.418240pt;}
.y77{bottom:325.552640pt;}
.y238{bottom:327.680000pt;}
.y15d{bottom:328.480000pt;}
.ya6{bottom:328.640000pt;}
.y17d{bottom:329.280000pt;}
.ye2{bottom:330.080000pt;}
.y178{bottom:330.400000pt;}
.y2e{bottom:330.738240pt;}
.y227{bottom:331.040000pt;}
.y237{bottom:331.996000pt;}
.y101{bottom:332.160000pt;}
.ya8{bottom:333.433760pt;}
.y1a2{bottom:334.244000pt;}
.y1d6{bottom:334.560000pt;}
.y209{bottom:336.032000pt;}
.y122{bottom:337.760000pt;}
.yaa{bottom:340.953760pt;}
.yd0{bottom:342.035200pt;}
.yd{bottom:343.546667pt;}
.y2d{bottom:345.135200pt;}
.y50{bottom:345.260800pt;}
.y76{bottom:345.395200pt;}
.y17b{bottom:346.080000pt;}
.y154{bottom:347.520000pt;}
.y1a1{bottom:347.840000pt;}
.y1d5{bottom:348.008000pt;}
.ye1{bottom:348.320000pt;}
.ya7{bottom:348.480000pt;}
.y24b{bottom:348.927600pt;}
.y100{bottom:348.960000pt;}
.y226{bottom:349.280000pt;}
.y208{bottom:349.472000pt;}
.y9{bottom:351.724000pt;}
.y155{bottom:352.000000pt;}
.y121{bottom:354.560000pt;}
.ya9{bottom:356.000000pt;}
.y156{bottom:358.720000pt;}
.y2c{bottom:359.532160pt;}
.y1a0{bottom:361.304000pt;}
.y1d4{bottom:361.604000pt;}
.ycf{bottom:361.877760pt;}
.y177{bottom:362.880000pt;}
.y207{bottom:362.912000pt;}
.y75{bottom:365.075840pt;}
.y4f{bottom:365.103360pt;}
.yff{bottom:365.920000pt;}
.ye0{bottom:366.720000pt;}
.y225{bottom:367.680000pt;}
.y2b{bottom:373.929120pt;}
.y11f{bottom:374.240000pt;}
.y24a{bottom:374.642000pt;}
.y19f{bottom:374.744000pt;}
.y1d3{bottom:375.044000pt;}
.y206{bottom:376.508000pt;}
.ya4{bottom:376.960000pt;}
.y152{bottom:377.920000pt;}
.y176{bottom:379.680000pt;}
.yce{bottom:381.558400pt;}
.ya5{bottom:381.760000pt;}
.y14e{bottom:382.244000pt;}
.yfe{bottom:382.720000pt;}
.y4e{bottom:384.784000pt;}
.y74{bottom:384.918400pt;}
.y120{bottom:384.960000pt;}
.y224{bottom:385.920000pt;}
.yb{bottom:386.533333pt;}
.y2a{bottom:388.326080pt;}
.y19e{bottom:388.340000pt;}
.y1d2{bottom:388.640000pt;}
.y245{bottom:388.670000pt;}
.y153{bottom:389.120000pt;}
.y151{bottom:389.124000pt;}
.y205{bottom:389.948000pt;}
.ydf{bottom:390.876000pt;}
.y172{bottom:394.244000pt;}
.y14d{bottom:395.840000pt;}
.y175{bottom:396.480000pt;}
.y8{bottom:397.065333pt;}
.yfd{bottom:399.520000pt;}
.y173{bottom:400.960000pt;}
.ycd{bottom:401.400960pt;}
.y19d{bottom:401.780000pt;}
.y1d1{bottom:402.080000pt;}
.y29{bottom:402.723040pt;}
.y204{bottom:403.544000pt;}
.y223{bottom:404.320000pt;}
.y4d{bottom:404.626560pt;}
.y73{bottom:404.760960pt;}
.yde{bottom:407.040000pt;}
.y11e{bottom:407.520000pt;}
.y171{bottom:407.840000pt;}
.y14f{bottom:408.160000pt;}
.ya1{bottom:410.240000pt;}
.y246{bottom:410.546000pt;}
.y174{bottom:413.440000pt;}
.ya3{bottom:415.193760pt;}
.y19c{bottom:415.220000pt;}
.y1d0{bottom:415.528000pt;}
.yfc{bottom:416.320000pt;}
.y203{bottom:416.984000pt;}
.y28{bottom:417.120000pt;}
.y150{bottom:419.520000pt;}
.ycc{bottom:421.243520pt;}
.ya0{bottom:422.554400pt;}
.y222{bottom:422.720000pt;}
.y11d{bottom:423.840000pt;}
.y4c{bottom:424.469120pt;}
.y72{bottom:424.603520pt;}
.y19b{bottom:428.816000pt;}
.y1cf{bottom:429.124000pt;}
.ya2{bottom:430.240000pt;}
.y202{bottom:430.424000pt;}
.y247{bottom:432.422000pt;}
.yfb{bottom:433.120000pt;}
.y11{bottom:433.826667pt;}
.y9f{bottom:437.760000pt;}
.y14b{bottom:438.560000pt;}
.y221{bottom:440.960000pt;}
.ycb{bottom:441.086080pt;}
.y11c{bottom:441.280000pt;}
.y19a{bottom:442.256000pt;}
.y7{bottom:442.406667pt;}
.y1ce{bottom:442.564000pt;}
.y14c{bottom:443.040000pt;}
.y201{bottom:444.020000pt;}
.y71{bottom:444.284160pt;}
.y4b{bottom:444.311680pt;}
.y170{bottom:447.040000pt;}
.y14a{bottom:449.760000pt;}
.yfa{bottom:450.080000pt;}
.y248{bottom:454.298000pt;}
.y11b{bottom:454.720000pt;}
.y199{bottom:455.852000pt;}
.y1cd{bottom:456.004000pt;}
.y200{bottom:457.460000pt;}
.y9c{bottom:458.720000pt;}
.y21f{bottom:459.360000pt;}
.y16e{bottom:460.000000pt;}
.yca{bottom:460.766720pt;}
.y16f{bottom:463.840000pt;}
.y4a{bottom:463.992320pt;}
.y70{bottom:464.126720pt;}
.y220{bottom:464.160000pt;}
.yf9{bottom:466.880000pt;}
.y146{bottom:468.960000pt;}
.y198{bottom:469.292000pt;}
.y1cc{bottom:469.600000pt;}
.y1ff{bottom:470.900000pt;}
.y9b{bottom:471.033760pt;}
.y11a{bottom:471.520000pt;}
.y21e{bottom:471.680000pt;}
.y149{bottom:473.280000pt;}
.y142{bottom:473.284000pt;}
.y249{bottom:476.174000pt;}
.y12{bottom:478.426667pt;}
.y9e{bottom:478.560000pt;}
.yf6{bottom:479.680000pt;}
.y145{bottom:480.160000pt;}
.yc9{bottom:480.609280pt;}
.y197{bottom:482.732000pt;}
.y1cb{bottom:483.048000pt;}
.yf7{bottom:483.680000pt;}
.y49{bottom:483.834880pt;}
.y6f{bottom:483.969280pt;}
.y1fe{bottom:484.496000pt;}
.y9a{bottom:486.080000pt;}
.y16d{bottom:486.556000pt;}
.y141{bottom:486.880000pt;}
.y6{bottom:487.748000pt;}
.y119{bottom:488.320000pt;}
.y21d{bottom:492.640000pt;}
.y196{bottom:496.328000pt;}
.y1ca{bottom:496.644000pt;}
.y1fd{bottom:497.936000pt;}
.y144{bottom:499.200000pt;}
.y236{bottom:499.840000pt;}
.yc8{bottom:500.451840pt;}
.y16c{bottom:502.720000pt;}
.y48{bottom:503.677440pt;}
.y6e{bottom:503.811840pt;}
.y118{bottom:505.120000pt;}
.yf5{bottom:506.240000pt;}
.y95{bottom:507.040000pt;}
.y195{bottom:509.768000pt;}
.y1c9{bottom:510.084000pt;}
.y143{bottom:510.400000pt;}
.y21c{bottom:511.040000pt;}
.y1fc{bottom:511.532000pt;}
.y235{bottom:517.440000pt;}
.y99{bottom:519.353760pt;}
.yc7{bottom:520.294400pt;}
.y117{bottom:521.920000pt;}
.yf4{bottom:522.560000pt;}
.y194{bottom:523.208000pt;}
.y21b{bottom:523.360000pt;}
.y6d{bottom:523.492480pt;}
.y47{bottom:523.520000pt;}
.y1c8{bottom:523.524000pt;}
.y1b{bottom:524.093333pt;}
.y1fb{bottom:524.972000pt;}
.y96{bottom:526.880000pt;}
.y13f{bottom:529.600000pt;}
.y5{bottom:533.089333pt;}
.y98{bottom:534.400000pt;}
.y234{bottom:535.840000pt;}
.y140{bottom:536.800000pt;}
.y193{bottom:536.804000pt;}
.y1c7{bottom:537.144000pt;}
.y1fa{bottom:538.412000pt;}
.y116{bottom:538.880000pt;}
.yc6{bottom:539.975040pt;}
.y13d{bottom:542.400000pt;}
.y6c{bottom:543.335040pt;}
.y21a{bottom:544.320000pt;}
.y13e{bottom:546.400000pt;}
.y233{bottom:549.604000pt;}
.y192{bottom:550.244000pt;}
.y1c6{bottom:550.584000pt;}
.y1f9{bottom:552.008000pt;}
.y92{bottom:555.360000pt;}
.y115{bottom:555.680000pt;}
.y43{bottom:555.840000pt;}
.y219{bottom:556.640000pt;}
.yc5{bottom:559.817600pt;}
.y94{bottom:560.160000pt;}
.ye{bottom:561.706667pt;}
.y6b{bottom:563.177600pt;}
.y191{bottom:563.840000pt;}
.y1c5{bottom:564.024000pt;}
.y244{bottom:565.161067pt;}
.y1f8{bottom:565.448000pt;}
.y13c{bottom:568.960000pt;}
.y3d{bottom:570.240000pt;}
.y112{bottom:572.480000pt;}
.y42{bottom:575.686080pt;}
.y190{bottom:577.280000pt;}
.y218{bottom:577.600000pt;}
.y1c4{bottom:577.620000pt;}
.y1f7{bottom:578.888000pt;}
.yc4{bottom:579.660160pt;}
.y6a{bottom:583.020160pt;}
.y111{bottom:583.680000pt;}
.y13b{bottom:585.280000pt;}
.y8c{bottom:588.640000pt;}
.y217{bottom:590.080000pt;}
.y41{bottom:590.083040pt;}
.y18f{bottom:590.728000pt;}
.y243{bottom:590.899467pt;}
.y1c3{bottom:591.060000pt;}
.y1f6{bottom:592.484000pt;}
.y8f{bottom:593.433760pt;}
.yc3{bottom:599.502720pt;}
.y91{bottom:600.953760pt;}
.y69{bottom:602.700800pt;}
.y18e{bottom:604.324000pt;}
.y1c2{bottom:604.656000pt;}
.y23a{bottom:604.903467pt;}
.y1f5{bottom:605.924000pt;}
.y40{bottom:607.199040pt;}
.y8e{bottom:608.480000pt;}
.y110{bottom:608.636000pt;}
.y216{bottom:611.040000pt;}
.y90{bottom:616.000000pt;}
.y18d{bottom:617.764000pt;}
.y1c1{bottom:618.096000pt;}
.y3f{bottom:618.880000pt;}
.yc2{bottom:619.183360pt;}
.y1f4{bottom:619.520000pt;}
.y23b{bottom:621.751467pt;}
.y68{bottom:622.543360pt;}
.y10f{bottom:624.800000pt;}
.y215{bottom:629.280000pt;}
.y18c{bottom:631.204000pt;}
.y1c0{bottom:631.536000pt;}
.y1f3{bottom:632.960000pt;}
.y8b{bottom:636.960000pt;}
.y23c{bottom:638.599467pt;}
.yc1{bottom:639.025920pt;}
.y67{bottom:642.385920pt;}
.y37{bottom:642.400000pt;}
.y18b{bottom:644.800000pt;}
.y1bf{bottom:645.132000pt;}
.y1f2{bottom:646.412000pt;}
.y214{bottom:647.680000pt;}
.y3c{bottom:650.080000pt;}
.y23d{bottom:655.447467pt;}
.y1be{bottom:658.572000pt;}
.yc0{bottom:658.868480pt;}
.y1f1{bottom:660.812000pt;}
.y66{bottom:662.228480pt;}
.y8a{bottom:662.400000pt;}
.y213{bottom:665.920000pt;}
.y39{bottom:671.680000pt;}
.y1bd{bottom:672.012000pt;}
.y23e{bottom:672.295467pt;}
.y1f0{bottom:674.252000pt;}
.y3a{bottom:677.760000pt;}
.ybf{bottom:678.711040pt;}
.y89{bottom:680.960000pt;}
.y65{bottom:681.909120pt;}
.y212{bottom:684.320000pt;}
.y35{bottom:685.600000pt;}
.y1bc{bottom:685.608000pt;}
.y1ef{bottom:687.848000pt;}
.y23f{bottom:689.143467pt;}
.y4{bottom:691.756000pt;}
.y22{bottom:697.600000pt;}
.y88{bottom:698.391680pt;}
.y1bb{bottom:699.048000pt;}
.y1ee{bottom:701.288000pt;}
.y64{bottom:701.751680pt;}
.y211{bottom:702.720000pt;}
.y240{bottom:705.991467pt;}
.y27{bottom:706.560000pt;}
.y1ba{bottom:712.644000pt;}
.y1ed{bottom:714.884000pt;}
.y210{bottom:715.040000pt;}
.y87{bottom:718.234240pt;}
.y63{bottom:721.594240pt;}
.y241{bottom:722.839467pt;}
.y13{bottom:725.040000pt;}
.y1b9{bottom:726.084000pt;}
.y1ec{bottom:728.324000pt;}
.y26{bottom:731.685760pt;}
.y20f{bottom:736.000000pt;}
.y86{bottom:738.076800pt;}
.y1b8{bottom:739.524000pt;}
.y242{bottom:739.687467pt;}
.y62{bottom:741.436800pt;}
.y1eb{bottom:741.764000pt;}
.y1b7{bottom:753.120000pt;}
.y1ea{bottom:755.360000pt;}
.y25{bottom:756.960000pt;}
.y85{bottom:757.919360pt;}
.y20e{bottom:760.160000pt;}
.y61{bottom:761.117440pt;}
.y232{bottom:763.360000pt;}
.y1b6{bottom:766.560000pt;}
.y1e9{bottom:768.800000pt;}
.y84{bottom:777.600000pt;}
.y1b5{bottom:780.000000pt;}
.y24{bottom:780.320000pt;}
.y60{bottom:780.960000pt;}
.y1e8{bottom:782.240000pt;}
.y5f{bottom:797.440000pt;}
.y3{bottom:805.081333pt;}
.y57{bottom:810.720000pt;}
.y5e{bottom:815.680000pt;}
.y59{bottom:822.400000pt;}
.y1c{bottom:828.480000pt;}
.y5c{bottom:829.120000pt;}
.y5b{bottom:831.840000pt;}
.y2{bottom:857.092000pt;}
.y1{bottom:879.748000pt;}
.he{height:4.285000pt;}
.h14{height:12.000000pt;}
.h1f{height:14.400000pt;}
.h39{height:16.158667pt;}
.h3a{height:16.160000pt;}
.h3d{height:16.320000pt;}
.h36{height:17.598667pt;}
.h35{height:17.600000pt;}
.h2b{height:17.760000pt;}
.h3f{height:22.281250pt;}
.h25{height:22.496250pt;}
.h19{height:24.638750pt;}
.h1d{height:25.990937pt;}
.h1e{height:25.994778pt;}
.h4{height:29.333333pt;}
.h3b{height:29.598667pt;}
.h40{height:29.600000pt;}
.h3c{height:29.760000pt;}
.h12{height:29.856875pt;}
.h22{height:30.400000pt;}
.h1a{height:31.066250pt;}
.h26{height:31.918125pt;}
.h3e{height:32.507812pt;}
.h30{height:32.640000pt;}
.h2a{height:33.421875pt;}
.h13{height:35.886875pt;}
.hd{height:36.870937pt;}
.h2c{height:36.986875pt;}
.h24{height:40.171875pt;}
.h43{height:40.911250pt;}
.h27{height:40.997500pt;}
.h42{height:41.193438pt;}
.h41{height:41.241437pt;}
.h23{height:41.273438pt;}
.h29{height:41.460938pt;}
.h17{height:42.314375pt;}
.h15{height:43.200000pt;}
.h1b{height:43.474688pt;}
.h2e{height:44.456875pt;}
.h2f{height:45.675938pt;}
.h31{height:47.520000pt;}
.h32{height:47.680000pt;}
.h2d{height:47.681333pt;}
.hb{height:49.277500pt;}
.h34{height:50.456250pt;}
.h21{height:50.628750pt;}
.h28{height:50.858750pt;}
.h3{height:51.916667pt;}
.h11{height:52.115085pt;}
.h10{height:52.138125pt;}
.hc{height:52.960000pt;}
.h16{height:53.562500pt;}
.h18{height:55.386250pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h1c{height:72.160000pt;}
.h38{height:74.536875pt;}
.h33{height:75.755937pt;}
.h37{height:76.395937pt;}
.h7{height:102.413333pt;}
.hf{height:115.200000pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h20{height:316.800000pt;}
.ha{height:888.000000pt;}
.h9{height:888.320000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w1c{width:21.920000pt;}
.w1e{width:27.360000pt;}
.w15{width:29.598667pt;}
.w17{width:29.600000pt;}
.w19{width:29.920000pt;}
.w1a{width:29.921333pt;}
.w1b{width:31.840000pt;}
.w26{width:36.800000pt;}
.w10{width:37.760000pt;}
.wd{width:37.920000pt;}
.w29{width:38.880000pt;}
.w2a{width:39.040000pt;}
.w2b{width:39.041333pt;}
.w24{width:40.960000pt;}
.w25{width:40.961333pt;}
.w2f{width:44.160000pt;}
.w1d{width:46.560000pt;}
.w2e{width:46.720000pt;}
.w21{width:46.721333pt;}
.w1f{width:55.998667pt;}
.w20{width:56.000000pt;}
.w2c{width:74.880000pt;}
.w12{width:84.320000pt;}
.w11{width:103.200000pt;}
.wb{width:114.560000pt;}
.w28{width:118.400000pt;}
.w16{width:165.280000pt;}
.w14{width:165.600000pt;}
.w22{width:165.760000pt;}
.w2d{width:188.478667pt;}
.w27{width:197.600000pt;}
.w23{width:248.958667pt;}
.w13{width:263.520000pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w18{width:336.000000pt;}
.wc{width:378.080000pt;}
.w30{width:407.520000pt;}
.we{width:434.720000pt;}
.wf{width:434.880000pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:623.680000pt;}
.wa{width:624.000000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x48{left:1.280000pt;}
.x3{left:2.666667pt;}
.x40{left:4.000000pt;}
.x33{left:5.600000pt;}
.xc{left:7.200000pt;}
.x3a{left:9.120000pt;}
.x5c{left:10.720000pt;}
.x42{left:11.680000pt;}
.x87{left:13.600000pt;}
.x3e{left:14.720000pt;}
.x70{left:16.160000pt;}
.x7a{left:17.760000pt;}
.x7b{left:19.040000pt;}
.x5b{left:20.160000pt;}
.x30{left:21.280000pt;}
.x79{left:22.560000pt;}
.x6d{left:24.480000pt;}
.x3f{left:26.400000pt;}
.x85{left:28.480000pt;}
.x7d{left:35.520000pt;}
.x74{left:37.440000pt;}
.x8e{left:40.480000pt;}
.x47{left:42.880000pt;}
.x56{left:44.000000pt;}
.x22{left:55.840000pt;}
.x10{left:64.480000pt;}
.xa{left:75.520000pt;}
.xd{left:82.720000pt;}
.x32{left:85.600000pt;}
.x35{left:91.200000pt;}
.x1a{left:92.160000pt;}
.x8a{left:93.280000pt;}
.x67{left:94.240000pt;}
.xf{left:96.000000pt;}
.x7e{left:97.920000pt;}
.x86{left:99.204000pt;}
.x45{left:101.600000pt;}
.x5e{left:103.840000pt;}
.xb{left:107.200000pt;}
.x8b{left:111.196000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x4f{left:118.240000pt;}
.x5f{left:122.880000pt;}
.x8d{left:130.560000pt;}
.x43{left:134.880000pt;}
.x8f{left:136.160000pt;}
.x50{left:140.960000pt;}
.x12{left:142.880000pt;}
.x78{left:145.760000pt;}
.x94{left:148.930933pt;}
.x11{left:153.280000pt;}
.x5{left:154.760000pt;}
.x93{left:159.449200pt;}
.x15{left:160.960000pt;}
.x24{left:164.320000pt;}
.x31{left:166.560000pt;}
.x7f{left:167.520000pt;}
.x2{left:169.813333pt;}
.x51{left:171.520000pt;}
.x71{left:172.636000pt;}
.x23{left:176.800000pt;}
.x7{left:178.413333pt;}
.x5d{left:179.680000pt;}
.x90{left:184.800000pt;}
.x92{left:186.080000pt;}
.x52{left:188.480000pt;}
.x34{left:189.600000pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x66{left:200.480000pt;}
.x46{left:202.080000pt;}
.x17{left:203.200000pt;}
.x61{left:206.080000pt;}
.x25{left:207.200000pt;}
.x83{left:218.560000pt;}
.x37{left:220.960000pt;}
.x76{left:223.040000pt;}
.x80{left:224.800000pt;}
.x57{left:227.040000pt;}
.x13{left:228.320000pt;}
.x49{left:232.640000pt;}
.x14{left:234.560000pt;}
.x44{left:240.960000pt;}
.x16{left:245.600000pt;}
.x19{left:247.680000pt;}
.x39{left:251.840000pt;}
.x88{left:255.200000pt;}
.x69{left:260.960000pt;}
.x4a{left:263.360000pt;}
.x7c{left:264.320000pt;}
.x27{left:269.280000pt;}
.x29{left:274.240000pt;}
.x36{left:280.152160pt;}
.x3b{left:282.080000pt;}
.x58{left:283.680000pt;}
.x18{left:287.680000pt;}
.x60{left:289.280000pt;}
.x4b{left:293.920000pt;}
.x6a{left:300.640000pt;}
.x73{left:302.240000pt;}
.x1b{left:310.080000pt;}
.x38{left:311.692000pt;}
.x26{left:324.960000pt;}
.x62{left:330.880000pt;}
.x1d{left:332.960000pt;}
.x41{left:338.720000pt;}
.x59{left:340.320000pt;}
.x75{left:341.920000pt;}
.x81{left:343.680000pt;}
.x2b{left:348.160000pt;}
.x84{left:349.760000pt;}
.x4c{left:355.040000pt;}
.x8c{left:357.600000pt;}
.x89{left:360.480000pt;}
.x1f{left:367.360000pt;}
.x63{left:372.480000pt;}
.x2d{left:376.640000pt;}
.x6b{left:380.000000pt;}
.x28{left:385.280000pt;}
.x77{left:387.680000pt;}
.x2a{left:395.520000pt;}
.x53{left:396.960000pt;}
.x64{left:414.080000pt;}
.x4d{left:416.320000pt;}
.x68{left:419.680000pt;}
.x72{left:423.836000pt;}
.x82{left:426.560000pt;}
.x21{left:432.000000pt;}
.x1c{left:434.720000pt;}
.x6c{left:440.320000pt;}
.x5a{left:444.160000pt;}
.x4e{left:446.880000pt;}
.x54{left:451.200000pt;}
.x1e{left:453.760000pt;}
.x65{left:455.680000pt;}
.x6e{left:459.360000pt;}
.xe{left:460.800000pt;}
.x2c{left:468.960000pt;}
.x3c{left:478.240000pt;}
.x20{left:488.480000pt;}
.x55{left:491.520000pt;}
.x2e{left:497.440000pt;}
.x6f{left:499.040000pt;}
.x3d{left:508.640000pt;}
.x2f{left:510.400000pt;}
.x91{left:538.720000pt;}
}




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