
    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_01c26c8d4c56e4aec3c32e58.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9264120dcad84b08390d10da.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_556e9cb0d4514bf86d87a3a8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.193848;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_d5b5c690c96e191ad4e56906.woff')format("woff");}.ff4{font-family:ff4;line-height:1.016113;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_6dacaab420a62622eefa29f3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_a4a211dd0d0ca4daa81a8b58.woff')format("woff");}.ff6{font-family:ff6;line-height:1.105957;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_e6dac231af99db55e4812368.woff')format("woff");}.ff7{font-family:ff7;line-height:1.133789;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-10.584000px;}
.ls7{letter-spacing:-7.884000px;}
.ls79{letter-spacing:-7.686000px;}
.ls9{letter-spacing:-6.588000px;}
.ls63{letter-spacing:-6.486000px;}
.ls8a{letter-spacing:-6.111000px;}
.lsa{letter-spacing:-5.712000px;}
.ls8b{letter-spacing:-5.229000px;}
.ls4c{letter-spacing:-4.209000px;}
.ls56{letter-spacing:-4.050000px;}
.lsb{letter-spacing:-3.696000px;}
.ls80{letter-spacing:-3.528000px;}
.ls36{letter-spacing:-3.243000px;}
.ls8{letter-spacing:-3.240000px;}
.ls42{letter-spacing:-2.898000px;}
.ls32{letter-spacing:-2.760000px;}
.ls83{letter-spacing:-2.709000px;}
.ls35{letter-spacing:-2.691000px;}
.ls7f{letter-spacing:-2.583000px;}
.ls78{letter-spacing:-2.520000px;}
.ls1d{letter-spacing:-2.511000px;}
.ls1a{letter-spacing:-2.430000px;}
.ls51{letter-spacing:-2.415000px;}
.lsd{letter-spacing:-2.352000px;}
.ls29{letter-spacing:-2.277000px;}
.ls20{letter-spacing:-2.109000px;}
.ls69{letter-spacing:-2.079000px;}
.ls14{letter-spacing:-2.040000px;}
.ls23{letter-spacing:-2.001000px;}
.ls30{letter-spacing:-1.932000px;}
.ls71{letter-spacing:-1.827000px;}
.ls26{letter-spacing:-1.794000px;}
.ls41{letter-spacing:-1.725000px;}
.ls37{letter-spacing:-1.656000px;}
.ls1f{letter-spacing:-1.620000px;}
.ls4f{letter-spacing:-1.587000px;}
.ls24{letter-spacing:-1.518000px;}
.ls22{letter-spacing:-1.449000px;}
.ls5{letter-spacing:-1.296000px;}
.lsc{letter-spacing:-1.260000px;}
.ls52{letter-spacing:-1.173000px;}
.ls3e{letter-spacing:-1.104000px;}
.ls17{letter-spacing:-1.080000px;}
.ls84{letter-spacing:-1.071000px;}
.ls58{letter-spacing:-0.897000px;}
.ls19{letter-spacing:-0.855000px;}
.ls64{letter-spacing:-0.828000px;}
.ls50{letter-spacing:-0.759000px;}
.ls48{letter-spacing:-0.690000px;}
.ls1e{letter-spacing:-0.627000px;}
.ls25{letter-spacing:-0.621000px;}
.ls85{letter-spacing:-0.567000px;}
.ls16{letter-spacing:-0.420000px;}
.ls49{letter-spacing:-0.414000px;}
.ls2f{letter-spacing:-0.345000px;}
.ls55{letter-spacing:-0.171000px;}
.ls4e{letter-spacing:-0.069000px;}
.ls3{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.006900px;}
.ls5d{letter-spacing:0.013800px;}
.ls3a{letter-spacing:0.069000px;}
.ls15{letter-spacing:1.080000px;}
.ls40{letter-spacing:1.380000px;}
.ls4b{letter-spacing:1.518000px;}
.ls68{letter-spacing:1.701000px;}
.ls73{letter-spacing:1.827000px;}
.ls72{letter-spacing:1.845900px;}
.ls5c{letter-spacing:1.932000px;}
.ls59{letter-spacing:2.208000px;}
.ls2a{letter-spacing:2.277000px;}
.ls1b{letter-spacing:2.400000px;}
.ls70{letter-spacing:2.507400px;}
.ls6f{letter-spacing:2.520000px;}
.ls53{letter-spacing:2.553000px;}
.ls74{letter-spacing:2.583000px;}
.ls6a{letter-spacing:3.150000px;}
.ls6b{letter-spacing:3.213000px;}
.ls7c{letter-spacing:3.276000px;}
.ls67{letter-spacing:3.893400px;}
.lsf{letter-spacing:4.200000px;}
.ls3d{letter-spacing:4.278000px;}
.ls2b{letter-spacing:4.554000px;}
.ls61{letter-spacing:4.950000px;}
.ls3f{letter-spacing:5.475000px;}
.ls18{letter-spacing:5.760000px;}
.ls2c{letter-spacing:5.796000px;}
.ls46{letter-spacing:5.844300px;}
.ls1c{letter-spacing:5.850000px;}
.ls39{letter-spacing:5.865000px;}
.lse{letter-spacing:5.880000px;}
.ls1{letter-spacing:6.000000px;}
.ls66{letter-spacing:6.237000px;}
.ls2{letter-spacing:6.300000px;}
.ls2d{letter-spacing:6.334200px;}
.ls62{letter-spacing:6.417000px;}
.ls44{letter-spacing:6.762000px;}
.ls7b{letter-spacing:7.056000px;}
.ls7e{letter-spacing:7.350000px;}
.ls87{letter-spacing:7.686000px;}
.ls34{letter-spacing:7.725000px;}
.ls2e{letter-spacing:7.950000px;}
.ls6d{letter-spacing:8.001000px;}
.ls57{letter-spacing:8.100000px;}
.ls6e{letter-spacing:8.250000px;}
.ls4d{letter-spacing:8.325000px;}
.ls4{letter-spacing:8.400000px;}
.ls27{letter-spacing:8.418000px;}
.ls6c{letter-spacing:8.442000px;}
.ls0{letter-spacing:8.550000px;}
.ls43{letter-spacing:8.556000px;}
.ls11{letter-spacing:8.625000px;}
.ls10{letter-spacing:8.638800px;}
.ls12{letter-spacing:8.680200px;}
.ls28{letter-spacing:8.694000px;}
.ls65{letter-spacing:8.820000px;}
.ls47{letter-spacing:8.925000px;}
.ls5b{letter-spacing:9.522000px;}
.ls5e{letter-spacing:9.604800px;}
.ls13{letter-spacing:10.074000px;}
.ls54{letter-spacing:10.212000px;}
.ls3c{letter-spacing:10.494900px;}
.ls45{letter-spacing:11.454000px;}
.ls89{letter-spacing:11.529000px;}
.ls75{letter-spacing:11.781000px;}
.ls5f{letter-spacing:12.116400px;}
.ls3b{letter-spacing:12.351000px;}
.ls81{letter-spacing:12.726000px;}
.ls88{letter-spacing:13.293000px;}
.ls38{letter-spacing:14.628000px;}
.ls82{letter-spacing:15.183000px;}
.ls21{letter-spacing:16.077000px;}
.ls77{letter-spacing:17.451000px;}
.ls7a{letter-spacing:24.381000px;}
.ls60{letter-spacing:25.116000px;}
.ls7d{letter-spacing:25.830000px;}
.ls76{letter-spacing:30.636900px;}
.ls4a{letter-spacing:31.326000px;}
.ls86{letter-spacing:39.942000px;}
.ls5a{letter-spacing:41.262000px;}
.ls33{letter-spacing:50.646000px;}
.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;}
}
.ws4{word-spacing:-30.348000px;}
.ws4c{word-spacing:-30.000000px;}
.ws0{word-spacing:-29.625000px;}
.ws1e{word-spacing:-29.475000px;}
.ws5e{word-spacing:-29.400000px;}
.ws80{word-spacing:-29.325000px;}
.ws6c{word-spacing:-29.175000px;}
.ws2{word-spacing:-29.052000px;}
.ws2e{word-spacing:-29.025000px;}
.ws37{word-spacing:-28.800000px;}
.ws86{word-spacing:-28.425000px;}
.ws1a{word-spacing:-26.925000px;}
.ws47{word-spacing:-26.550000px;}
.ws72{word-spacing:-26.025000px;}
.ws3d{word-spacing:-25.323000px;}
.ws7d{word-spacing:-24.003000px;}
.ws5{word-spacing:-23.760000px;}
.ws8{word-spacing:-23.604000px;}
.ws8d{word-spacing:-22.860000px;}
.ws9{word-spacing:-22.740000px;}
.ws14{word-spacing:-22.620000px;}
.ws70{word-spacing:-20.631000px;}
.ws15{word-spacing:-20.331000px;}
.ws7{word-spacing:-19.488000px;}
.ws7b{word-spacing:-19.404000px;}
.ws1d{word-spacing:-19.389000px;}
.ws3{word-spacing:-18.792000px;}
.ws6a{word-spacing:-18.711000px;}
.ws23{word-spacing:-18.630000px;}
.ws1{word-spacing:-18.102000px;}
.ws81{word-spacing:-17.703000px;}
.ws6{word-spacing:-17.052000px;}
.ws16{word-spacing:-17.043000px;}
.ws5f{word-spacing:-16.974000px;}
.ws8f{word-spacing:-16.860000px;}
.ws2f{word-spacing:-16.698000px;}
.ws4f{word-spacing:-16.629000px;}
.ws21{word-spacing:-16.422000px;}
.ws4e{word-spacing:-16.353000px;}
.ws61{word-spacing:-16.284000px;}
.ws27{word-spacing:-16.077000px;}
.ws40{word-spacing:-15.939000px;}
.ws63{word-spacing:-15.870000px;}
.ws5d{word-spacing:-15.663000px;}
.ws1f{word-spacing:-15.594000px;}
.ws7c{word-spacing:-15.561000px;}
.ws4d{word-spacing:-15.525000px;}
.ws60{word-spacing:-15.456000px;}
.ws4a{word-spacing:-15.318000px;}
.ws22{word-spacing:-15.249000px;}
.ws30{word-spacing:-15.111000px;}
.ws20{word-spacing:-15.042000px;}
.ws8e{word-spacing:-14.820000px;}
.ws2a{word-spacing:-14.766000px;}
.ws62{word-spacing:-14.628000px;}
.ws38{word-spacing:-14.352000px;}
.ws34{word-spacing:-14.283000px;}
.ws39{word-spacing:-13.800000px;}
.ws82{word-spacing:-13.734000px;}
.ws7e{word-spacing:-13.482000px;}
.ws84{word-spacing:-13.041000px;}
.ws56{word-spacing:-12.834000px;}
.ws89{word-spacing:-12.726000px;}
.wsc{word-spacing:-8.400000px;}
.ws85{word-spacing:-7.875000px;}
.ws48{word-spacing:-7.866000px;}
.ws75{word-spacing:-6.417000px;}
.ws7f{word-spacing:-6.300000px;}
.wsa{word-spacing:-6.000000px;}
.ws51{word-spacing:-5.727000px;}
.ws65{word-spacing:-4.347000px;}
.ws54{word-spacing:-4.278000px;}
.ws11{word-spacing:-4.200000px;}
.ws78{word-spacing:-3.243000px;}
.ws5a{word-spacing:-3.105000px;}
.ws1b{word-spacing:-2.400000px;}
.ws32{word-spacing:-2.277000px;}
.ws53{word-spacing:-1.932000px;}
.ws46{word-spacing:-1.518000px;}
.ws17{word-spacing:-1.080000px;}
.ws7a{word-spacing:-0.828000px;}
.ws35{word-spacing:-0.276000px;}
.wsb{word-spacing:0.000000px;}
.ws64{word-spacing:0.069000px;}
.ws6b{word-spacing:0.171000px;}
.ws58{word-spacing:0.345000px;}
.ws13{word-spacing:0.360000px;}
.ws8c{word-spacing:0.567000px;}
.ws24{word-spacing:0.627000px;}
.ws2b{word-spacing:0.759000px;}
.ws66{word-spacing:0.828000px;}
.ws19{word-spacing:0.855000px;}
.ws6f{word-spacing:0.897000px;}
.ws3a{word-spacing:1.035000px;}
.ws8b{word-spacing:1.071000px;}
.ws18{word-spacing:1.080000px;}
.ws28{word-spacing:1.518000px;}
.ws25{word-spacing:1.620000px;}
.ws3b{word-spacing:1.656000px;}
.ws36{word-spacing:1.725000px;}
.ws2c{word-spacing:1.863000px;}
.ws12{word-spacing:1.980000px;}
.ws26{word-spacing:2.109000px;}
.ws49{word-spacing:2.208000px;}
.ws6e{word-spacing:2.277000px;}
.ws10{word-spacing:2.352000px;}
.ws1c{word-spacing:2.511000px;}
.ws87{word-spacing:2.583000px;}
.ws52{word-spacing:2.622000px;}
.ws8a{word-spacing:2.709000px;}
.ws68{word-spacing:2.829000px;}
.ws4b{word-spacing:2.898000px;}
.ws29{word-spacing:3.036000px;}
.wse{word-spacing:3.240000px;}
.ws77{word-spacing:3.243000px;}
.ws57{word-spacing:3.381000px;}
.ws88{word-spacing:3.528000px;}
.ws44{word-spacing:4.278000px;}
.ws42{word-spacing:4.554000px;}
.ws31{word-spacing:4.968000px;}
.ws91{word-spacing:5.229000px;}
.wsf{word-spacing:5.712000px;}
.ws90{word-spacing:6.111000px;}
.ws69{word-spacing:6.279000px;}
.ws55{word-spacing:6.417000px;}
.ws79{word-spacing:6.486000px;}
.ws2d{word-spacing:6.624000px;}
.ws3e{word-spacing:6.831000px;}
.ws6d{word-spacing:6.969000px;}
.ws67{word-spacing:7.245000px;}
.ws33{word-spacing:8.556000px;}
.ws83{word-spacing:8.568000px;}
.ws71{word-spacing:8.901000px;}
.ws5b{word-spacing:9.039000px;}
.wsd{word-spacing:10.584000px;}
.ws43{word-spacing:11.799000px;}
.ws76{word-spacing:12.075000px;}
.ws3f{word-spacing:12.282000px;}
.ws74{word-spacing:12.420000px;}
.ws41{word-spacing:14.904000px;}
.ws73{word-spacing:15.387000px;}
.ws50{word-spacing:15.663000px;}
.ws59{word-spacing:20.700000px;}
.ws45{word-spacing:26.151000px;}
.ws5c{word-spacing:28.152000px;}
.ws3c{word-spacing:69.138000px;}
._35{margin-left:-50.878200px;}
._41{margin-left:-41.434800px;}
._3e{margin-left:-31.079700px;}
._25{margin-left:-19.872000px;}
._1f{margin-left:-15.565500px;}
._30{margin-left:-14.235600px;}
._26{margin-left:-12.865500px;}
._23{margin-left:-11.756400px;}
._22{margin-left:-10.743300px;}
._1c{margin-left:-8.941500px;}
._b{margin-left:-7.795500px;}
._38{margin-left:-6.757500px;}
._6{margin-left:-5.682000px;}
._8{margin-left:-4.182000px;}
._7{margin-left:-2.496000px;}
._0{margin-left:-1.027800px;}
._2{width:1.056000px;}
._4{width:2.106000px;}
._5{width:3.345900px;}
._9{width:5.100000px;}
._3{width:6.318000px;}
._a{width:7.374000px;}
._c{width:9.352800px;}
._e{width:10.672800px;}
._f{width:11.866800px;}
._d{width:12.873600px;}
._10{width:13.928400px;}
._1b{width:15.196500px;}
._18{width:16.491000px;}
._15{width:17.940000px;}
._44{width:19.167600px;}
._17{width:20.582700px;}
._20{width:21.707400px;}
._1e{width:22.811400px;}
._2a{width:23.825100px;}
._14{width:24.852000px;}
._3f{width:25.904400px;}
._2c{width:26.910000px;}
._3b{width:28.586700px;}
._19{width:30.015000px;}
._39{width:31.188600px;}
._2e{width:33.189000px;}
._2f{width:35.024400px;}
._2d{width:36.197400px;}
._42{width:37.460100px;}
._29{width:38.488200px;}
._27{width:40.296000px;}
._31{width:41.343000px;}
._37{width:42.538500px;}
._34{width:44.194500px;}
._3d{width:45.602100px;}
._2b{width:49.956000px;}
._3a{width:52.578000px;}
._24{width:61.092600px;}
._3c{width:62.155200px;}
._32{width:69.048300px;}
._33{width:70.124700px;}
._16{width:85.554000px;}
._11{width:260.610000px;}
._46{width:486.405000px;}
._36{width:488.992200px;}
._40{width:490.260000px;}
._45{width:491.482200px;}
._1{width:492.840000px;}
._43{width:494.146200px;}
._1a{width:496.104000px;}
._12{width:578.400000px;}
._1d{width:994.000200px;}
._21{width:996.625200px;}
._28{width:1000.675200px;}
._13{width:1002.655200px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y217{bottom:106.071600px;}
.y1d5{bottom:106.118850px;}
.y91{bottom:106.165350px;}
.y6a{bottom:106.191750px;}
.y160{bottom:106.196550px;}
.yb1{bottom:106.210500px;}
.y45{bottom:106.229400px;}
.y140{bottom:106.288350px;}
.y1f{bottom:106.299150px;}
.y275{bottom:106.311900px;}
.y11d{bottom:106.314600px;}
.y1f6{bottom:106.355100px;}
.y1a3{bottom:106.370850px;}
.y238{bottom:106.402350px;}
.yf8{bottom:106.402500px;}
.y183{bottom:106.433850px;}
.y274{bottom:126.426900px;}
.y69{bottom:126.564000px;}
.y11c{bottom:126.583350px;}
.y90{bottom:126.589350px;}
.y182{bottom:126.782850px;}
.y1f5{bottom:126.908850px;}
.yb0{bottom:127.031250px;}
.y44{bottom:127.050150px;}
.y13f{bottom:127.057350px;}
.y1e{bottom:127.282650px;}
.yf7{bottom:127.344000px;}
.y259{bottom:127.381350px;}
.y1a2{bottom:127.570350px;}
.y216{bottom:127.664850px;}
.yd5{bottom:127.693350px;}
.y237{bottom:127.727850px;}
.y15f{bottom:127.742550px;}
.y1d4{bottom:127.853850px;}
.y273{bottom:146.541900px;}
.y1d{bottom:146.797650px;}
.y11b{bottom:146.852100px;}
.y68{bottom:146.936250px;}
.y8f{bottom:147.013350px;}
.y181{bottom:147.131850px;}
.y13e{bottom:147.826350px;}
.yaf{bottom:147.852000px;}
.y43{bottom:147.870900px;}
.yf6{bottom:148.285500px;}
.y1a1{bottom:148.769850px;}
.yd4{bottom:149.221350px;}
.y215{bottom:149.258100px;}
.y15e{bottom:149.288550px;}
.y1f4{bottom:155.967600px;}
.y258{bottom:156.833850px;}
.y236{bottom:157.558350px;}
.y1d3{bottom:158.093850px;}
.y1c{bottom:166.312650px;}
.y272{bottom:166.656900px;}
.y11a{bottom:167.120850px;}
.y67{bottom:167.308500px;}
.y8e{bottom:167.437350px;}
.y180{bottom:167.480850px;}
.y13d{bottom:168.595350px;}
.yae{bottom:168.672750px;}
.y42{bottom:168.691650px;}
.yf5{bottom:169.227000px;}
.yd3{bottom:170.749350px;}
.y15d{bottom:170.834550px;}
.y1f3{bottom:176.521350px;}
.y257{bottom:177.781350px;}
.y1a0{bottom:178.474350px;}
.y235{bottom:178.883850px;}
.y214{bottom:179.356350px;}
.y1d2{bottom:179.828850px;}
.y1b{bottom:185.827650px;}
.y271{bottom:186.771900px;}
.y66{bottom:187.680750px;}
.y8d{bottom:187.861350px;}
.y13c{bottom:189.364350px;}
.yad{bottom:189.493500px;}
.y41{bottom:189.512400px;}
.yf4{bottom:190.168500px;}
.yd2{bottom:192.277350px;}
.y15c{bottom:192.380550px;}
.y17f{bottom:196.334850px;}
.y256{bottom:198.728850px;}
.y19f{bottom:199.673850px;}
.y119{bottom:200.150550px;}
.y234{bottom:200.209350px;}
.y213{bottom:200.949600px;}
.y1a{bottom:205.342650px;}
.y1f2{bottom:205.580100px;}
.y65{bottom:208.053000px;}
.y8c{bottom:208.285350px;}
.y1d1{bottom:210.068850px;}
.y13b{bottom:210.133350px;}
.yac{bottom:210.314250px;}
.y40{bottom:210.333150px;}
.yf3{bottom:211.110000px;}
.yd1{bottom:213.805350px;}
.y17e{bottom:216.683850px;}
.y270{bottom:219.651900px;}
.y255{bottom:219.676350px;}
.y19e{bottom:220.873350px;}
.y233{bottom:221.534850px;}
.y15b{bottom:222.431550px;}
.y212{bottom:222.542850px;}
.y19{bottom:224.857650px;}
.y1f1{bottom:226.133850px;}
.y64{bottom:228.425250px;}
.y8b{bottom:228.709350px;}
.y13a{bottom:230.902350px;}
.yab{bottom:231.135000px;}
.y3f{bottom:231.153900px;}
.y1d0{bottom:231.803850px;}
.yf2{bottom:232.051500px;}
.yd0{bottom:235.333350px;}
.y17d{bottom:237.032850px;}
.y232{bottom:242.860350px;}
.y15a{bottom:243.977550px;}
.y18{bottom:244.372650px;}
.y63{bottom:248.797500px;}
.y254{bottom:249.128850px;}
.y8a{bottom:249.133350px;}
.y19d{bottom:250.577850px;}
.y139{bottom:251.671350px;}
.yaa{bottom:251.955750px;}
.y3e{bottom:251.974650px;}
.y211{bottom:252.641100px;}
.yf1{bottom:252.993000px;}
.y118{bottom:254.101350px;}
.y1f0{bottom:255.192600px;}
.ycf{bottom:256.861350px;}
.y17c{bottom:257.381850px;}
.y1cf{bottom:262.043850px;}
.y17{bottom:263.887650px;}
.y62{bottom:269.169750px;}
.y89{bottom:269.557350px;}
.y253{bottom:270.076350px;}
.y19c{bottom:271.777350px;}
.y138{bottom:272.440350px;}
.y231{bottom:272.690850px;}
.ya9{bottom:272.776500px;}
.y3d{bottom:272.795400px;}
.yf0{bottom:273.934500px;}
.y159{bottom:274.028550px;}
.y210{bottom:274.234350px;}
.y117{bottom:274.370100px;}
.y1ef{bottom:275.746350px;}
.y26f{bottom:278.052150px;}
.yce{bottom:278.389350px;}
.y16{bottom:283.402650px;}
.y1ce{bottom:283.778850px;}
.y17b{bottom:286.235850px;}
.y61{bottom:289.542000px;}
.y88{bottom:289.981350px;}
.y252{bottom:291.023850px;}
.y19b{bottom:292.976850px;}
.y137{bottom:293.209350px;}
.ya8{bottom:293.597250px;}
.y3c{bottom:293.616150px;}
.y230{bottom:294.016350px;}
.y116{bottom:294.638850px;}
.yef{bottom:294.876000px;}
.y158{bottom:295.574550px;}
.y20f{bottom:295.827600px;}
.ycd{bottom:299.917350px;}
.y15{bottom:302.917650px;}
.y1ee{bottom:304.805100px;}
.y1cd{bottom:305.513850px;}
.y26e{bottom:305.667150px;}
.y17a{bottom:306.584850px;}
.y60{bottom:309.914250px;}
.y87{bottom:310.405350px;}
.y251{bottom:311.971350px;}
.y136{bottom:313.978350px;}
.y1b5{bottom:314.176350px;}
.ya7{bottom:314.418000px;}
.y3b{bottom:314.436900px;}
.y115{bottom:314.907600px;}
.y22f{bottom:315.341850px;}
.yee{bottom:315.817500px;}
.y20e{bottom:317.420850px;}
.ycc{bottom:321.445350px;}
.y14{bottom:322.432650px;}
.y19a{bottom:322.681350px;}
.y1ed{bottom:325.358850px;}
.y157{bottom:325.625550px;}
.y179{bottom:326.933850px;}
.y1cc{bottom:327.248850px;}
.y5f{bottom:330.286500px;}
.y86{bottom:330.829350px;}
.y250{bottom:332.918850px;}
.y26d{bottom:333.282150px;}
.y135{bottom:334.747350px;}
.y114{bottom:335.176350px;}
.ya6{bottom:335.238750px;}
.y3a{bottom:335.257650px;}
.y22e{bottom:336.667350px;}
.yed{bottom:336.759000px;}
.y20d{bottom:339.014100px;}
.ycb{bottom:342.973350px;}
.y199{bottom:343.880850px;}
.y178{bottom:347.282850px;}
.y5e{bottom:350.658750px;}
.y85{bottom:351.253350px;}
.y1ec{bottom:354.417600px;}
.y13{bottom:354.697650px;}
.y113{bottom:355.445100px;}
.y134{bottom:355.516350px;}
.y156{bottom:355.676550px;}
.ya5{bottom:356.059500px;}
.y39{bottom:356.078400px;}
.y1cb{bottom:357.488850px;}
.yec{bottom:357.700500px;}
.y26c{bottom:360.897150px;}
.y24f{bottom:362.371350px;}
.yca{bottom:364.501350px;}
.y1b4{bottom:365.080350px;}
.y22d{bottom:366.497850px;}
.y20c{bottom:369.112350px;}
.y5d{bottom:371.031000px;}
.y84{bottom:371.677350px;}
.y198{bottom:373.585350px;}
.y1eb{bottom:374.971350px;}
.y112{bottom:375.713850px;}
.y177{bottom:376.136850px;}
.y133{bottom:376.285350px;}
.ya4{bottom:376.880250px;}
.y38{bottom:376.899150px;}
.y155{bottom:377.222550px;}
.yeb{bottom:378.642000px;}
.y1ca{bottom:379.223850px;}
.y24e{bottom:383.318850px;}
.yc9{bottom:386.029350px;}
.y1b3{bottom:386.279850px;}
.y22c{bottom:387.823350px;}
.y20b{bottom:390.705600px;}
.y5c{bottom:391.403250px;}
.y83{bottom:392.101350px;}
.y197{bottom:394.784850px;}
.y111{bottom:395.982600px;}
.y176{bottom:396.485850px;}
.y132{bottom:397.054350px;}
.ya3{bottom:397.701000px;}
.y37{bottom:397.719900px;}
.yea{bottom:399.583500px;}
.y1c9{bottom:400.958850px;}
.y1ea{bottom:404.030100px;}
.y24d{bottom:404.266350px;}
.y154{bottom:407.273550px;}
.y1b2{bottom:407.479350px;}
.yc8{bottom:407.557350px;}
.y22b{bottom:409.148850px;}
.y12{bottom:412.494900px;}
.y82{bottom:412.525350px;}
.y196{bottom:415.984350px;}
.y110{bottom:416.251350px;}
.y175{bottom:416.834850px;}
.ya2{bottom:418.521750px;}
.y36{bottom:418.540650px;}
.ye9{bottom:420.525000px;}
.y20a{bottom:420.803850px;}
.y1e9{bottom:424.583850px;}
.y24c{bottom:425.213850px;}
.y1b1{bottom:428.678850px;}
.y153{bottom:428.819550px;}
.yc7{bottom:429.085350px;}
.y22a{bottom:430.474350px;}
.y1c8{bottom:431.198850px;}
.y81{bottom:432.949350px;}
.y5b{bottom:433.027650px;}
.y10f{bottom:436.520100px;}
.y174{bottom:437.183850px;}
.y131{bottom:439.077900px;}
.ya1{bottom:439.342500px;}
.y35{bottom:439.361400px;}
.y11{bottom:439.500900px;}
.ye8{bottom:441.466500px;}
.y209{bottom:442.397100px;}
.y1b0{bottom:449.878350px;}
.y152{bottom:450.365550px;}
.yc6{bottom:450.613350px;}
.y1c7{bottom:452.933850px;}
.y80{bottom:453.373350px;}
.y1e8{bottom:453.642600px;}
.y24b{bottom:454.666350px;}
.y10e{bottom:456.788850px;}
.ya0{bottom:460.163250px;}
.y34{bottom:460.182150px;}
.y229{bottom:460.304850px;}
.ye7{bottom:462.408000px;}
.y130{bottom:463.600650px;}
.y208{bottom:463.990350px;}
.y173{bottom:466.037850px;}
.y10{bottom:466.506900px;}
.y195{bottom:466.888350px;}
.y26b{bottom:468.526350px;}
.y151{bottom:471.911550px;}
.yc5{bottom:472.141350px;}
.y7f{bottom:473.797350px;}
.y1e7{bottom:474.196350px;}
.y1c6{bottom:474.668850px;}
.y24a{bottom:475.613850px;}
.y10d{bottom:477.057600px;}
.y1af{bottom:479.582850px;}
.y33{bottom:481.002900px;}
.y228{bottom:481.630350px;}
.ye6{bottom:483.349500px;}
.y207{bottom:485.583600px;}
.y172{bottom:486.386850px;}
.y194{bottom:488.087850px;}
.y26a{bottom:489.395100px;}
.yf{bottom:493.512900px;}
.yc4{bottom:493.669350px;}
.y7e{bottom:494.221350px;}
.y1e6{bottom:494.750100px;}
.y5a{bottom:495.256350px;}
.y10c{bottom:497.326350px;}
.y1ae{bottom:500.782350px;}
.y32{bottom:501.823650px;}
.y150{bottom:501.962550px;}
.y9f{bottom:502.238700px;}
.ye5{bottom:504.291000px;}
.y1c5{bottom:504.908850px;}
.y249{bottom:505.066350px;}
.y171{bottom:506.735850px;}
.y193{bottom:509.287350px;}
.y269{bottom:510.263850px;}
.y227{bottom:511.460850px;}
.y287{bottom:513.192750px;}
.y7d{bottom:514.645350px;}
.yc3{bottom:515.197350px;}
.y59{bottom:515.628600px;}
.y206{bottom:515.681850px;}
.y10b{bottom:517.595100px;}
.y1ad{bottom:521.981850px;}
.y31{bottom:522.644400px;}
.y14f{bottom:523.508550px;}
.y1e5{bottom:523.808850px;}
.ye4{bottom:525.232500px;}
.y248{bottom:526.013850px;}
.y12f{bottom:526.374150px;}
.y1c4{bottom:526.643850px;}
.y170{bottom:527.084850px;}
.y192{bottom:530.486850px;}
.y226{bottom:532.786350px;}
.y286{bottom:533.442750px;}
.y7c{bottom:535.069350px;}
.y58{bottom:536.000850px;}
.yc2{bottom:536.725350px;}
.y205{bottom:537.275100px;}
.y10a{bottom:537.863850px;}
.y268{bottom:539.637600px;}
.ye{bottom:541.799100px;}
.y1ac{bottom:543.181350px;}
.y30{bottom:543.465150px;}
.y1e4{bottom:544.362600px;}
.y14e{bottom:545.054550px;}
.ye3{bottom:546.174000px;}
.y247{bottom:546.961350px;}
.y12e{bottom:547.143150px;}
.y1c3{bottom:548.378850px;}
.y285{bottom:553.692750px;}
.y7b{bottom:555.493350px;}
.y16f{bottom:555.938850px;}
.y57{bottom:556.373100px;}
.y109{bottom:558.132600px;}
.yc1{bottom:558.253350px;}
.y204{bottom:558.868350px;}
.y191{bottom:560.191350px;}
.y267{bottom:560.506350px;}
.y225{bottom:562.616850px;}
.y2f{bottom:564.285900px;}
.y1ab{bottom:564.380850px;}
.y1e3{bottom:564.916350px;}
.y14d{bottom:566.600550px;}
.y12d{bottom:567.912150px;}
.yd{bottom:573.308100px;}
.y284{bottom:573.942750px;}
.y7a{bottom:575.917350px;}
.y16e{bottom:576.287850px;}
.y246{bottom:576.413850px;}
.y56{bottom:576.745350px;}
.y108{bottom:578.401350px;}
.y1c2{bottom:578.618850px;}
.yc0{bottom:579.781350px;}
.y190{bottom:581.390850px;}
.y224{bottom:583.942350px;}
.y1e2{bottom:585.470100px;}
.y1aa{bottom:585.580350px;}
.y9e{bottom:586.333950px;}
.ye2{bottom:588.380250px;}
.y12c{bottom:588.681150px;}
.y203{bottom:588.966600px;}
.y266{bottom:589.880100px;}
.y283{bottom:594.192750px;}
.y79{bottom:596.341350px;}
.y14c{bottom:596.651550px;}
.y55{bottom:597.117600px;}
.y245{bottom:597.361350px;}
.y107{bottom:598.670100px;}
.y1c1{bottom:600.353850px;}
.ybf{bottom:601.309350px;}
.y18f{bottom:602.590350px;}
.yc{bottom:604.817100px;}
.y16d{bottom:605.141850px;}
.y1e1{bottom:606.023850px;}
.y2e{bottom:606.363300px;}
.y1a9{bottom:606.779850px;}
.y12b{bottom:609.450150px;}
.y202{bottom:610.559850px;}
.y265{bottom:610.748850px;}
.y9d{bottom:610.897200px;}
.y223{bottom:613.772850px;}
.y282{bottom:614.442750px;}
.y78{bottom:616.765350px;}
.y54{bottom:617.489850px;}
.y14b{bottom:618.197550px;}
.y244{bottom:618.308850px;}
.y106{bottom:618.938850px;}
.ybe{bottom:622.837350px;}
.y18e{bottom:623.789850px;}
.y16c{bottom:625.490850px;}
.y12a{bottom:630.219150px;}
.y1c0{bottom:630.593850px;}
.y281{bottom:634.692750px;}
.y1e0{bottom:635.082600px;}
.y222{bottom:635.098350px;}
.yb{bottom:636.326100px;}
.y1a8{bottom:636.484350px;}
.y77{bottom:637.189350px;}
.y53{bottom:637.862100px;}
.y105{bottom:639.207600px;}
.y264{bottom:640.122600px;}
.y201{bottom:640.658100px;}
.ybd{bottom:644.365350px;}
.y16b{bottom:645.839850px;}
.y243{bottom:647.761350px;}
.y14a{bottom:648.248550px;}
.y129{bottom:650.988150px;}
.ye1{bottom:651.403350px;}
.y1bf{bottom:652.328850px;}
.y18d{bottom:653.494350px;}
.y76{bottom:657.613350px;}
.y1a7{bottom:657.683850px;}
.y52{bottom:658.234350px;}
.y104{bottom:659.476350px;}
.y263{bottom:660.991350px;}
.y200{bottom:662.251350px;}
.y1df{bottom:664.141350px;}
.y221{bottom:664.928850px;}
.ybc{bottom:665.893350px;}
.y280{bottom:667.692750px;}
.ya{bottom:667.835100px;}
.y242{bottom:668.708850px;}
.y2d{bottom:669.198450px;}
.y149{bottom:669.794550px;}
.y128{bottom:671.757150px;}
.ye0{bottom:672.344850px;}
.y9c{bottom:673.673100px;}
.y1be{bottom:674.063850px;}
.y16a{bottom:674.693850px;}
.y75{bottom:678.037350px;}
.y51{bottom:678.606600px;}
.y103{bottom:679.745100px;}
.y1de{bottom:684.695100px;}
.y220{bottom:686.254350px;}
.y1a6{bottom:687.388350px;}
.ybb{bottom:687.421350px;}
.y241{bottom:689.656350px;}
.y262{bottom:690.365100px;}
.y2c{bottom:690.747750px;}
.y148{bottom:691.340550px;}
.y1ff{bottom:692.349600px;}
.y127{bottom:692.526150px;}
.ydf{bottom:693.286350px;}
.y9b{bottom:694.493850px;}
.y169{bottom:695.042850px;}
.y18c{bottom:695.893350px;}
.y74{bottom:698.461350px;}
.y50{bottom:698.978850px;}
.y9{bottom:699.344100px;}
.y102{bottom:700.013850px;}
.y1bd{bottom:704.303850px;}
.yba{bottom:708.949350px;}
.y27f{bottom:709.197750px;}
.y2b{bottom:710.817750px;}
.y261{bottom:711.233850px;}
.y126{bottom:713.295150px;}
.y1dd{bottom:713.753850px;}
.y1fe{bottom:713.942850px;}
.yde{bottom:714.227850px;}
.y9a{bottom:715.314600px;}
.y168{bottom:715.391850px;}
.y21f{bottom:716.084850px;}
.y18b{bottom:717.092850px;}
.y73{bottom:718.885350px;}
.y240{bottom:719.108850px;}
.y4f{bottom:719.351100px;}
.y101{bottom:720.282600px;}
.y147{bottom:721.391550px;}
.y1bc{bottom:726.038850px;}
.y27e{bottom:728.697750px;}
.yb9{bottom:730.477350px;}
.y2a{bottom:730.887750px;}
.y125{bottom:734.064150px;}
.y1dc{bottom:734.307600px;}
.ydd{bottom:735.169350px;}
.y1fd{bottom:735.536100px;}
.y167{bottom:735.740850px;}
.y99{bottom:736.135350px;}
.y21e{bottom:737.410350px;}
.y1a5{bottom:738.292350px;}
.y72{bottom:739.309350px;}
.y4e{bottom:739.723350px;}
.y23f{bottom:740.056350px;}
.y100{bottom:740.551350px;}
.y260{bottom:740.607600px;}
.y18a{bottom:746.797350px;}
.y27d{bottom:748.197750px;}
.y29{bottom:750.957750px;}
.yb8{bottom:752.005350px;}
.y124{bottom:754.833150px;}
.ydc{bottom:756.110850px;}
.y1bb{bottom:756.278850px;}
.y98{bottom:756.956100px;}
.y1fc{bottom:757.129350px;}
.y21d{bottom:758.735850px;}
.y1a4{bottom:759.491850px;}
.y71{bottom:759.733350px;}
.y4d{bottom:760.095600px;}
.y8{bottom:760.602000px;}
.yff{bottom:760.820100px;}
.y23e{bottom:761.003850px;}
.y25f{bottom:761.476350px;}
.y1db{bottom:763.366350px;}
.y166{bottom:764.594850px;}
.y27c{bottom:767.697750px;}
.y189{bottom:767.996850px;}
.y28{bottom:771.027750px;}
.y146{bottom:773.429850px;}
.yb7{bottom:773.533350px;}
.y123{bottom:775.602150px;}
.ydb{bottom:777.052350px;}
.y97{bottom:777.776850px;}
.y1ba{bottom:778.013850px;}
.y21c{bottom:780.061350px;}
.y70{bottom:780.157350px;}
.y4c{bottom:780.467850px;}
.yfe{bottom:781.088850px;}
.y23d{bottom:781.951350px;}
.y25e{bottom:782.345100px;}
.y1da{bottom:783.920100px;}
.y165{bottom:784.943850px;}
.y27b{bottom:787.197750px;}
.y1fb{bottom:787.227600px;}
.y188{bottom:789.196350px;}
.y7{bottom:790.122000px;}
.y27{bottom:791.097750px;}
.y145{bottom:794.975100px;}
.yb6{bottom:795.061350px;}
.y122{bottom:796.371150px;}
.yda{bottom:797.993850px;}
.y96{bottom:798.597600px;}
.y6f{bottom:800.581350px;}
.y4b{bottom:800.840100px;}
.yfd{bottom:801.357600px;}
.y1d9{bottom:804.473850px;}
.y164{bottom:805.292850px;}
.y27a{bottom:806.697750px;}
.y1b9{bottom:808.253850px;}
.y1fa{bottom:808.820850px;}
.y21b{bottom:809.891850px;}
.y187{bottom:810.395850px;}
.y6{bottom:811.137000px;}
.y26{bottom:811.167750px;}
.y23c{bottom:811.403850px;}
.y25d{bottom:811.718850px;}
.y144{bottom:816.520350px;}
.yb5{bottom:816.589350px;}
.y121{bottom:817.140150px;}
.yd9{bottom:818.935350px;}
.y95{bottom:819.418350px;}
.y6e{bottom:821.005350px;}
.y4a{bottom:821.212350px;}
.yfc{bottom:821.626350px;}
.y279{bottom:826.197750px;}
.y1b8{bottom:829.988850px;}
.y1f9{bottom:830.414100px;}
.y21a{bottom:831.217350px;}
.y25{bottom:831.237750px;}
.y23b{bottom:832.351350px;}
.y25c{bottom:832.587600px;}
.y1d8{bottom:833.532600px;}
.y163{bottom:834.146850px;}
.y120{bottom:837.909150px;}
.y143{bottom:838.065600px;}
.yb4{bottom:838.117350px;}
.yd8{bottom:839.876850px;}
.y186{bottom:840.100350px;}
.y94{bottom:840.239100px;}
.y5{bottom:840.657000px;}
.y6d{bottom:841.429350px;}
.y49{bottom:841.584600px;}
.yfb{bottom:841.895100px;}
.y278{bottom:845.697750px;}
.y24{bottom:851.307750px;}
.y1b7{bottom:851.723850px;}
.y1f8{bottom:852.007350px;}
.y219{bottom:852.542850px;}
.y23a{bottom:853.298850px;}
.y25b{bottom:853.456350px;}
.y1d7{bottom:854.086350px;}
.y162{bottom:854.495850px;}
.y11f{bottom:858.678150px;}
.y142{bottom:859.610850px;}
.yb3{bottom:859.645350px;}
.yd7{bottom:860.818350px;}
.y93{bottom:861.059850px;}
.y185{bottom:861.299850px;}
.y4{bottom:861.672000px;}
.y6c{bottom:861.853350px;}
.y48{bottom:861.956850px;}
.yfa{bottom:862.163850px;}
.y277{bottom:865.197750px;}
.y23{bottom:871.377750px;}
.y141{bottom:881.156100px;}
.yb2{bottom:881.173350px;}
.yd6{bottom:881.759850px;}
.y92{bottom:881.880600px;}
.y1b6{bottom:881.963850px;}
.y1f7{bottom:882.105600px;}
.y6b{bottom:882.277350px;}
.y47{bottom:882.329100px;}
.y218{bottom:882.373350px;}
.yf9{bottom:882.432600px;}
.y184{bottom:882.499350px;}
.y3{bottom:882.687000px;}
.y239{bottom:882.751350px;}
.y25a{bottom:882.830100px;}
.y1d6{bottom:883.145100px;}
.y161{bottom:883.349850px;}
.y276{bottom:884.697750px;}
.y11e{bottom:900.706200px;}
.y46{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:904.197750px;}
.y21{bottom:948.189000px;}
.y20{bottom:966.189000px;}
.he{height:42.070312px;}
.ha{height:51.884766px;}
.h4{height:52.587891px;}
.h3{height:55.217285px;}
.h9{height:56.191406px;}
.h10{height:59.000977px;}
.hd{height:60.476074px;}
.hf{height:60.880371px;}
.hc{height:64.620117px;}
.h2{height:65.734863px;}
.hb{height:70.993652px;}
.h7{height:73.623047px;}
.h8{height:78.667969px;}
.h5{height:94.658203px;}
.h6{height:101.144531px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.542650px;}
.xa{left:82.422900px;}
.x1{left:83.672550px;}
.x6{left:85.110600px;}
.xe{left:86.251650px;}
.xf{left:101.803200px;}
.xc{left:102.922350px;}
.x5{left:105.030600px;}
.x7{left:106.365600px;}
.xd{left:201.097500px;}
.xb{left:202.455600px;}
.x8{left:212.664000px;}
.x4{left:227.152800px;}
.x2{left:232.601400px;}
.x3{left:233.753850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-9.408000pt;}
.ls7{letter-spacing:-7.008000pt;}
.ls79{letter-spacing:-6.832000pt;}
.ls9{letter-spacing:-5.856000pt;}
.ls63{letter-spacing:-5.765333pt;}
.ls8a{letter-spacing:-5.432000pt;}
.lsa{letter-spacing:-5.077333pt;}
.ls8b{letter-spacing:-4.648000pt;}
.ls4c{letter-spacing:-3.741333pt;}
.ls56{letter-spacing:-3.600000pt;}
.lsb{letter-spacing:-3.285333pt;}
.ls80{letter-spacing:-3.136000pt;}
.ls36{letter-spacing:-2.882667pt;}
.ls8{letter-spacing:-2.880000pt;}
.ls42{letter-spacing:-2.576000pt;}
.ls32{letter-spacing:-2.453333pt;}
.ls83{letter-spacing:-2.408000pt;}
.ls35{letter-spacing:-2.392000pt;}
.ls7f{letter-spacing:-2.296000pt;}
.ls78{letter-spacing:-2.240000pt;}
.ls1d{letter-spacing:-2.232000pt;}
.ls1a{letter-spacing:-2.160000pt;}
.ls51{letter-spacing:-2.146667pt;}
.lsd{letter-spacing:-2.090667pt;}
.ls29{letter-spacing:-2.024000pt;}
.ls20{letter-spacing:-1.874667pt;}
.ls69{letter-spacing:-1.848000pt;}
.ls14{letter-spacing:-1.813333pt;}
.ls23{letter-spacing:-1.778667pt;}
.ls30{letter-spacing:-1.717333pt;}
.ls71{letter-spacing:-1.624000pt;}
.ls26{letter-spacing:-1.594667pt;}
.ls41{letter-spacing:-1.533333pt;}
.ls37{letter-spacing:-1.472000pt;}
.ls1f{letter-spacing:-1.440000pt;}
.ls4f{letter-spacing:-1.410667pt;}
.ls24{letter-spacing:-1.349333pt;}
.ls22{letter-spacing:-1.288000pt;}
.ls5{letter-spacing:-1.152000pt;}
.lsc{letter-spacing:-1.120000pt;}
.ls52{letter-spacing:-1.042667pt;}
.ls3e{letter-spacing:-0.981333pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls84{letter-spacing:-0.952000pt;}
.ls58{letter-spacing:-0.797333pt;}
.ls19{letter-spacing:-0.760000pt;}
.ls64{letter-spacing:-0.736000pt;}
.ls50{letter-spacing:-0.674667pt;}
.ls48{letter-spacing:-0.613333pt;}
.ls1e{letter-spacing:-0.557333pt;}
.ls25{letter-spacing:-0.552000pt;}
.ls85{letter-spacing:-0.504000pt;}
.ls16{letter-spacing:-0.373333pt;}
.ls49{letter-spacing:-0.368000pt;}
.ls2f{letter-spacing:-0.306667pt;}
.ls55{letter-spacing:-0.152000pt;}
.ls4e{letter-spacing:-0.061333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.006133pt;}
.ls5d{letter-spacing:0.012267pt;}
.ls3a{letter-spacing:0.061333pt;}
.ls15{letter-spacing:0.960000pt;}
.ls40{letter-spacing:1.226667pt;}
.ls4b{letter-spacing:1.349333pt;}
.ls68{letter-spacing:1.512000pt;}
.ls73{letter-spacing:1.624000pt;}
.ls72{letter-spacing:1.640800pt;}
.ls5c{letter-spacing:1.717333pt;}
.ls59{letter-spacing:1.962667pt;}
.ls2a{letter-spacing:2.024000pt;}
.ls1b{letter-spacing:2.133333pt;}
.ls70{letter-spacing:2.228800pt;}
.ls6f{letter-spacing:2.240000pt;}
.ls53{letter-spacing:2.269333pt;}
.ls74{letter-spacing:2.296000pt;}
.ls6a{letter-spacing:2.800000pt;}
.ls6b{letter-spacing:2.856000pt;}
.ls7c{letter-spacing:2.912000pt;}
.ls67{letter-spacing:3.460800pt;}
.lsf{letter-spacing:3.733333pt;}
.ls3d{letter-spacing:3.802667pt;}
.ls2b{letter-spacing:4.048000pt;}
.ls61{letter-spacing:4.400000pt;}
.ls3f{letter-spacing:4.866667pt;}
.ls18{letter-spacing:5.120000pt;}
.ls2c{letter-spacing:5.152000pt;}
.ls46{letter-spacing:5.194933pt;}
.ls1c{letter-spacing:5.200000pt;}
.ls39{letter-spacing:5.213333pt;}
.lse{letter-spacing:5.226667pt;}
.ls1{letter-spacing:5.333333pt;}
.ls66{letter-spacing:5.544000pt;}
.ls2{letter-spacing:5.600000pt;}
.ls2d{letter-spacing:5.630400pt;}
.ls62{letter-spacing:5.704000pt;}
.ls44{letter-spacing:6.010667pt;}
.ls7b{letter-spacing:6.272000pt;}
.ls7e{letter-spacing:6.533333pt;}
.ls87{letter-spacing:6.832000pt;}
.ls34{letter-spacing:6.866667pt;}
.ls2e{letter-spacing:7.066667pt;}
.ls6d{letter-spacing:7.112000pt;}
.ls57{letter-spacing:7.200000pt;}
.ls6e{letter-spacing:7.333333pt;}
.ls4d{letter-spacing:7.400000pt;}
.ls4{letter-spacing:7.466667pt;}
.ls27{letter-spacing:7.482667pt;}
.ls6c{letter-spacing:7.504000pt;}
.ls0{letter-spacing:7.600000pt;}
.ls43{letter-spacing:7.605333pt;}
.ls11{letter-spacing:7.666667pt;}
.ls10{letter-spacing:7.678933pt;}
.ls12{letter-spacing:7.715733pt;}
.ls28{letter-spacing:7.728000pt;}
.ls65{letter-spacing:7.840000pt;}
.ls47{letter-spacing:7.933333pt;}
.ls5b{letter-spacing:8.464000pt;}
.ls5e{letter-spacing:8.537600pt;}
.ls13{letter-spacing:8.954667pt;}
.ls54{letter-spacing:9.077333pt;}
.ls3c{letter-spacing:9.328800pt;}
.ls45{letter-spacing:10.181333pt;}
.ls89{letter-spacing:10.248000pt;}
.ls75{letter-spacing:10.472000pt;}
.ls5f{letter-spacing:10.770133pt;}
.ls3b{letter-spacing:10.978667pt;}
.ls81{letter-spacing:11.312000pt;}
.ls88{letter-spacing:11.816000pt;}
.ls38{letter-spacing:13.002667pt;}
.ls82{letter-spacing:13.496000pt;}
.ls21{letter-spacing:14.290667pt;}
.ls77{letter-spacing:15.512000pt;}
.ls7a{letter-spacing:21.672000pt;}
.ls60{letter-spacing:22.325333pt;}
.ls7d{letter-spacing:22.960000pt;}
.ls76{letter-spacing:27.232800pt;}
.ls4a{letter-spacing:27.845333pt;}
.ls86{letter-spacing:35.504000pt;}
.ls5a{letter-spacing:36.677333pt;}
.ls33{letter-spacing:45.018667pt;}
.ws4{word-spacing:-26.976000pt;}
.ws4c{word-spacing:-26.666667pt;}
.ws0{word-spacing:-26.333333pt;}
.ws1e{word-spacing:-26.200000pt;}
.ws5e{word-spacing:-26.133333pt;}
.ws80{word-spacing:-26.066667pt;}
.ws6c{word-spacing:-25.933333pt;}
.ws2{word-spacing:-25.824000pt;}
.ws2e{word-spacing:-25.800000pt;}
.ws37{word-spacing:-25.600000pt;}
.ws86{word-spacing:-25.266667pt;}
.ws1a{word-spacing:-23.933333pt;}
.ws47{word-spacing:-23.600000pt;}
.ws72{word-spacing:-23.133333pt;}
.ws3d{word-spacing:-22.509333pt;}
.ws7d{word-spacing:-21.336000pt;}
.ws5{word-spacing:-21.120000pt;}
.ws8{word-spacing:-20.981333pt;}
.ws8d{word-spacing:-20.320000pt;}
.ws9{word-spacing:-20.213333pt;}
.ws14{word-spacing:-20.106667pt;}
.ws70{word-spacing:-18.338667pt;}
.ws15{word-spacing:-18.072000pt;}
.ws7{word-spacing:-17.322667pt;}
.ws7b{word-spacing:-17.248000pt;}
.ws1d{word-spacing:-17.234667pt;}
.ws3{word-spacing:-16.704000pt;}
.ws6a{word-spacing:-16.632000pt;}
.ws23{word-spacing:-16.560000pt;}
.ws1{word-spacing:-16.090667pt;}
.ws81{word-spacing:-15.736000pt;}
.ws6{word-spacing:-15.157333pt;}
.ws16{word-spacing:-15.149333pt;}
.ws5f{word-spacing:-15.088000pt;}
.ws8f{word-spacing:-14.986667pt;}
.ws2f{word-spacing:-14.842667pt;}
.ws4f{word-spacing:-14.781333pt;}
.ws21{word-spacing:-14.597333pt;}
.ws4e{word-spacing:-14.536000pt;}
.ws61{word-spacing:-14.474667pt;}
.ws27{word-spacing:-14.290667pt;}
.ws40{word-spacing:-14.168000pt;}
.ws63{word-spacing:-14.106667pt;}
.ws5d{word-spacing:-13.922667pt;}
.ws1f{word-spacing:-13.861333pt;}
.ws7c{word-spacing:-13.832000pt;}
.ws4d{word-spacing:-13.800000pt;}
.ws60{word-spacing:-13.738667pt;}
.ws4a{word-spacing:-13.616000pt;}
.ws22{word-spacing:-13.554667pt;}
.ws30{word-spacing:-13.432000pt;}
.ws20{word-spacing:-13.370667pt;}
.ws8e{word-spacing:-13.173333pt;}
.ws2a{word-spacing:-13.125333pt;}
.ws62{word-spacing:-13.002667pt;}
.ws38{word-spacing:-12.757333pt;}
.ws34{word-spacing:-12.696000pt;}
.ws39{word-spacing:-12.266667pt;}
.ws82{word-spacing:-12.208000pt;}
.ws7e{word-spacing:-11.984000pt;}
.ws84{word-spacing:-11.592000pt;}
.ws56{word-spacing:-11.408000pt;}
.ws89{word-spacing:-11.312000pt;}
.wsc{word-spacing:-7.466667pt;}
.ws85{word-spacing:-7.000000pt;}
.ws48{word-spacing:-6.992000pt;}
.ws75{word-spacing:-5.704000pt;}
.ws7f{word-spacing:-5.600000pt;}
.wsa{word-spacing:-5.333333pt;}
.ws51{word-spacing:-5.090667pt;}
.ws65{word-spacing:-3.864000pt;}
.ws54{word-spacing:-3.802667pt;}
.ws11{word-spacing:-3.733333pt;}
.ws78{word-spacing:-2.882667pt;}
.ws5a{word-spacing:-2.760000pt;}
.ws1b{word-spacing:-2.133333pt;}
.ws32{word-spacing:-2.024000pt;}
.ws53{word-spacing:-1.717333pt;}
.ws46{word-spacing:-1.349333pt;}
.ws17{word-spacing:-0.960000pt;}
.ws7a{word-spacing:-0.736000pt;}
.ws35{word-spacing:-0.245333pt;}
.wsb{word-spacing:0.000000pt;}
.ws64{word-spacing:0.061333pt;}
.ws6b{word-spacing:0.152000pt;}
.ws58{word-spacing:0.306667pt;}
.ws13{word-spacing:0.320000pt;}
.ws8c{word-spacing:0.504000pt;}
.ws24{word-spacing:0.557333pt;}
.ws2b{word-spacing:0.674667pt;}
.ws66{word-spacing:0.736000pt;}
.ws19{word-spacing:0.760000pt;}
.ws6f{word-spacing:0.797333pt;}
.ws3a{word-spacing:0.920000pt;}
.ws8b{word-spacing:0.952000pt;}
.ws18{word-spacing:0.960000pt;}
.ws28{word-spacing:1.349333pt;}
.ws25{word-spacing:1.440000pt;}
.ws3b{word-spacing:1.472000pt;}
.ws36{word-spacing:1.533333pt;}
.ws2c{word-spacing:1.656000pt;}
.ws12{word-spacing:1.760000pt;}
.ws26{word-spacing:1.874667pt;}
.ws49{word-spacing:1.962667pt;}
.ws6e{word-spacing:2.024000pt;}
.ws10{word-spacing:2.090667pt;}
.ws1c{word-spacing:2.232000pt;}
.ws87{word-spacing:2.296000pt;}
.ws52{word-spacing:2.330667pt;}
.ws8a{word-spacing:2.408000pt;}
.ws68{word-spacing:2.514667pt;}
.ws4b{word-spacing:2.576000pt;}
.ws29{word-spacing:2.698667pt;}
.wse{word-spacing:2.880000pt;}
.ws77{word-spacing:2.882667pt;}
.ws57{word-spacing:3.005333pt;}
.ws88{word-spacing:3.136000pt;}
.ws44{word-spacing:3.802667pt;}
.ws42{word-spacing:4.048000pt;}
.ws31{word-spacing:4.416000pt;}
.ws91{word-spacing:4.648000pt;}
.wsf{word-spacing:5.077333pt;}
.ws90{word-spacing:5.432000pt;}
.ws69{word-spacing:5.581333pt;}
.ws55{word-spacing:5.704000pt;}
.ws79{word-spacing:5.765333pt;}
.ws2d{word-spacing:5.888000pt;}
.ws3e{word-spacing:6.072000pt;}
.ws6d{word-spacing:6.194667pt;}
.ws67{word-spacing:6.440000pt;}
.ws33{word-spacing:7.605333pt;}
.ws83{word-spacing:7.616000pt;}
.ws71{word-spacing:7.912000pt;}
.ws5b{word-spacing:8.034667pt;}
.wsd{word-spacing:9.408000pt;}
.ws43{word-spacing:10.488000pt;}
.ws76{word-spacing:10.733333pt;}
.ws3f{word-spacing:10.917333pt;}
.ws74{word-spacing:11.040000pt;}
.ws41{word-spacing:13.248000pt;}
.ws73{word-spacing:13.677333pt;}
.ws50{word-spacing:13.922667pt;}
.ws59{word-spacing:18.400000pt;}
.ws45{word-spacing:23.245333pt;}
.ws5c{word-spacing:25.024000pt;}
.ws3c{word-spacing:61.456000pt;}
._35{margin-left:-45.225067pt;}
._41{margin-left:-36.830933pt;}
._3e{margin-left:-27.626400pt;}
._25{margin-left:-17.664000pt;}
._1f{margin-left:-13.836000pt;}
._30{margin-left:-12.653867pt;}
._26{margin-left:-11.436000pt;}
._23{margin-left:-10.450133pt;}
._22{margin-left:-9.549600pt;}
._1c{margin-left:-7.948000pt;}
._b{margin-left:-6.929333pt;}
._38{margin-left:-6.006667pt;}
._6{margin-left:-5.050667pt;}
._8{margin-left:-3.717333pt;}
._7{margin-left:-2.218667pt;}
._0{margin-left:-0.913600pt;}
._2{width:0.938667pt;}
._4{width:1.872000pt;}
._5{width:2.974133pt;}
._9{width:4.533333pt;}
._3{width:5.616000pt;}
._a{width:6.554667pt;}
._c{width:8.313600pt;}
._e{width:9.486933pt;}
._f{width:10.548267pt;}
._d{width:11.443200pt;}
._10{width:12.380800pt;}
._1b{width:13.508000pt;}
._18{width:14.658667pt;}
._15{width:15.946667pt;}
._44{width:17.037867pt;}
._17{width:18.295733pt;}
._20{width:19.295467pt;}
._1e{width:20.276800pt;}
._2a{width:21.177867pt;}
._14{width:22.090667pt;}
._3f{width:23.026133pt;}
._2c{width:23.920000pt;}
._3b{width:25.410400pt;}
._19{width:26.680000pt;}
._39{width:27.723200pt;}
._2e{width:29.501333pt;}
._2f{width:31.132800pt;}
._2d{width:32.175467pt;}
._42{width:33.297867pt;}
._29{width:34.211733pt;}
._27{width:35.818667pt;}
._31{width:36.749333pt;}
._37{width:37.812000pt;}
._34{width:39.284000pt;}
._3d{width:40.535200pt;}
._2b{width:44.405333pt;}
._3a{width:46.736000pt;}
._24{width:54.304533pt;}
._3c{width:55.249067pt;}
._32{width:61.376267pt;}
._33{width:62.333067pt;}
._16{width:76.048000pt;}
._11{width:231.653333pt;}
._46{width:432.360000pt;}
._36{width:434.659733pt;}
._40{width:435.786667pt;}
._45{width:436.873067pt;}
._1{width:438.080000pt;}
._43{width:439.241067pt;}
._1a{width:440.981333pt;}
._12{width:514.133333pt;}
._1d{width:883.555733pt;}
._21{width:885.889067pt;}
._28{width:889.489067pt;}
._13{width:891.249067pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y217{bottom:94.285867pt;}
.y1d5{bottom:94.327867pt;}
.y91{bottom:94.369200pt;}
.y6a{bottom:94.392667pt;}
.y160{bottom:94.396933pt;}
.yb1{bottom:94.409333pt;}
.y45{bottom:94.426133pt;}
.y140{bottom:94.478533pt;}
.y1f{bottom:94.488133pt;}
.y275{bottom:94.499467pt;}
.y11d{bottom:94.501867pt;}
.y1f6{bottom:94.537867pt;}
.y1a3{bottom:94.551867pt;}
.y238{bottom:94.579867pt;}
.yf8{bottom:94.580000pt;}
.y183{bottom:94.607867pt;}
.y274{bottom:112.379467pt;}
.y69{bottom:112.501333pt;}
.y11c{bottom:112.518533pt;}
.y90{bottom:112.523867pt;}
.y182{bottom:112.695867pt;}
.y1f5{bottom:112.807867pt;}
.yb0{bottom:112.916667pt;}
.y44{bottom:112.933467pt;}
.y13f{bottom:112.939867pt;}
.y1e{bottom:113.140133pt;}
.yf7{bottom:113.194667pt;}
.y259{bottom:113.227867pt;}
.y1a2{bottom:113.395867pt;}
.y216{bottom:113.479867pt;}
.yd5{bottom:113.505200pt;}
.y237{bottom:113.535867pt;}
.y15f{bottom:113.548933pt;}
.y1d4{bottom:113.647867pt;}
.y273{bottom:130.259467pt;}
.y1d{bottom:130.486800pt;}
.y11b{bottom:130.535200pt;}
.y68{bottom:130.610000pt;}
.y8f{bottom:130.678533pt;}
.y181{bottom:130.783867pt;}
.y13e{bottom:131.401200pt;}
.yaf{bottom:131.424000pt;}
.y43{bottom:131.440800pt;}
.yf6{bottom:131.809333pt;}
.y1a1{bottom:132.239867pt;}
.yd4{bottom:132.641200pt;}
.y215{bottom:132.673867pt;}
.y15e{bottom:132.700933pt;}
.y1f4{bottom:138.637867pt;}
.y258{bottom:139.407867pt;}
.y236{bottom:140.051867pt;}
.y1d3{bottom:140.527867pt;}
.y1c{bottom:147.833467pt;}
.y272{bottom:148.139467pt;}
.y11a{bottom:148.551867pt;}
.y67{bottom:148.718667pt;}
.y8e{bottom:148.833200pt;}
.y180{bottom:148.871867pt;}
.y13d{bottom:149.862533pt;}
.yae{bottom:149.931333pt;}
.y42{bottom:149.948133pt;}
.yf5{bottom:150.424000pt;}
.yd3{bottom:151.777200pt;}
.y15d{bottom:151.852933pt;}
.y1f3{bottom:156.907867pt;}
.y257{bottom:158.027867pt;}
.y1a0{bottom:158.643867pt;}
.y235{bottom:159.007867pt;}
.y214{bottom:159.427867pt;}
.y1d2{bottom:159.847867pt;}
.y1b{bottom:165.180133pt;}
.y271{bottom:166.019467pt;}
.y66{bottom:166.827333pt;}
.y8d{bottom:166.987867pt;}
.y13c{bottom:168.323867pt;}
.yad{bottom:168.438667pt;}
.y41{bottom:168.455467pt;}
.yf4{bottom:169.038667pt;}
.yd2{bottom:170.913200pt;}
.y15c{bottom:171.004933pt;}
.y17f{bottom:174.519867pt;}
.y256{bottom:176.647867pt;}
.y19f{bottom:177.487867pt;}
.y119{bottom:177.911600pt;}
.y234{bottom:177.963867pt;}
.y213{bottom:178.621867pt;}
.y1a{bottom:182.526800pt;}
.y1f2{bottom:182.737867pt;}
.y65{bottom:184.936000pt;}
.y8c{bottom:185.142533pt;}
.y1d1{bottom:186.727867pt;}
.y13b{bottom:186.785200pt;}
.yac{bottom:186.946000pt;}
.y40{bottom:186.962800pt;}
.yf3{bottom:187.653333pt;}
.yd1{bottom:190.049200pt;}
.y17e{bottom:192.607867pt;}
.y270{bottom:195.246133pt;}
.y255{bottom:195.267867pt;}
.y19e{bottom:196.331867pt;}
.y233{bottom:196.919867pt;}
.y15b{bottom:197.716933pt;}
.y212{bottom:197.815867pt;}
.y19{bottom:199.873467pt;}
.y1f1{bottom:201.007867pt;}
.y64{bottom:203.044667pt;}
.y8b{bottom:203.297200pt;}
.y13a{bottom:205.246533pt;}
.yab{bottom:205.453333pt;}
.y3f{bottom:205.470133pt;}
.y1d0{bottom:206.047867pt;}
.yf2{bottom:206.268000pt;}
.yd0{bottom:209.185200pt;}
.y17d{bottom:210.695867pt;}
.y232{bottom:215.875867pt;}
.y15a{bottom:216.868933pt;}
.y18{bottom:217.220133pt;}
.y63{bottom:221.153333pt;}
.y254{bottom:221.447867pt;}
.y8a{bottom:221.451867pt;}
.y19d{bottom:222.735867pt;}
.y139{bottom:223.707867pt;}
.yaa{bottom:223.960667pt;}
.y3e{bottom:223.977467pt;}
.y211{bottom:224.569867pt;}
.yf1{bottom:224.882667pt;}
.y118{bottom:225.867867pt;}
.y1f0{bottom:226.837867pt;}
.ycf{bottom:228.321200pt;}
.y17c{bottom:228.783867pt;}
.y1cf{bottom:232.927867pt;}
.y17{bottom:234.566800pt;}
.y62{bottom:239.262000pt;}
.y89{bottom:239.606533pt;}
.y253{bottom:240.067867pt;}
.y19c{bottom:241.579867pt;}
.y138{bottom:242.169200pt;}
.y231{bottom:242.391867pt;}
.ya9{bottom:242.468000pt;}
.y3d{bottom:242.484800pt;}
.yf0{bottom:243.497333pt;}
.y159{bottom:243.580933pt;}
.y210{bottom:243.763867pt;}
.y117{bottom:243.884533pt;}
.y1ef{bottom:245.107867pt;}
.y26f{bottom:247.157467pt;}
.yce{bottom:247.457200pt;}
.y16{bottom:251.913467pt;}
.y1ce{bottom:252.247867pt;}
.y17b{bottom:254.431867pt;}
.y61{bottom:257.370667pt;}
.y88{bottom:257.761200pt;}
.y252{bottom:258.687867pt;}
.y19b{bottom:260.423867pt;}
.y137{bottom:260.630533pt;}
.ya8{bottom:260.975333pt;}
.y3c{bottom:260.992133pt;}
.y230{bottom:261.347867pt;}
.y116{bottom:261.901200pt;}
.yef{bottom:262.112000pt;}
.y158{bottom:262.732933pt;}
.y20f{bottom:262.957867pt;}
.ycd{bottom:266.593200pt;}
.y15{bottom:269.260133pt;}
.y1ee{bottom:270.937867pt;}
.y1cd{bottom:271.567867pt;}
.y26e{bottom:271.704133pt;}
.y17a{bottom:272.519867pt;}
.y60{bottom:275.479333pt;}
.y87{bottom:275.915867pt;}
.y251{bottom:277.307867pt;}
.y136{bottom:279.091867pt;}
.y1b5{bottom:279.267867pt;}
.ya7{bottom:279.482667pt;}
.y3b{bottom:279.499467pt;}
.y115{bottom:279.917867pt;}
.y22f{bottom:280.303867pt;}
.yee{bottom:280.726667pt;}
.y20e{bottom:282.151867pt;}
.ycc{bottom:285.729200pt;}
.y14{bottom:286.606800pt;}
.y19a{bottom:286.827867pt;}
.y1ed{bottom:289.207867pt;}
.y157{bottom:289.444933pt;}
.y179{bottom:290.607867pt;}
.y1cc{bottom:290.887867pt;}
.y5f{bottom:293.588000pt;}
.y86{bottom:294.070533pt;}
.y250{bottom:295.927867pt;}
.y26d{bottom:296.250800pt;}
.y135{bottom:297.553200pt;}
.y114{bottom:297.934533pt;}
.ya6{bottom:297.990000pt;}
.y3a{bottom:298.006800pt;}
.y22e{bottom:299.259867pt;}
.yed{bottom:299.341333pt;}
.y20d{bottom:301.345867pt;}
.ycb{bottom:304.865200pt;}
.y199{bottom:305.671867pt;}
.y178{bottom:308.695867pt;}
.y5e{bottom:311.696667pt;}
.y85{bottom:312.225200pt;}
.y1ec{bottom:315.037867pt;}
.y13{bottom:315.286800pt;}
.y113{bottom:315.951200pt;}
.y134{bottom:316.014533pt;}
.y156{bottom:316.156933pt;}
.ya5{bottom:316.497333pt;}
.y39{bottom:316.514133pt;}
.y1cb{bottom:317.767867pt;}
.yec{bottom:317.956000pt;}
.y26c{bottom:320.797467pt;}
.y24f{bottom:322.107867pt;}
.yca{bottom:324.001200pt;}
.y1b4{bottom:324.515867pt;}
.y22d{bottom:325.775867pt;}
.y20c{bottom:328.099867pt;}
.y5d{bottom:329.805333pt;}
.y84{bottom:330.379867pt;}
.y198{bottom:332.075867pt;}
.y1eb{bottom:333.307867pt;}
.y112{bottom:333.967867pt;}
.y177{bottom:334.343867pt;}
.y133{bottom:334.475867pt;}
.ya4{bottom:335.004667pt;}
.y38{bottom:335.021467pt;}
.y155{bottom:335.308933pt;}
.yeb{bottom:336.570667pt;}
.y1ca{bottom:337.087867pt;}
.y24e{bottom:340.727867pt;}
.yc9{bottom:343.137200pt;}
.y1b3{bottom:343.359867pt;}
.y22c{bottom:344.731867pt;}
.y20b{bottom:347.293867pt;}
.y5c{bottom:347.914000pt;}
.y83{bottom:348.534533pt;}
.y197{bottom:350.919867pt;}
.y111{bottom:351.984533pt;}
.y176{bottom:352.431867pt;}
.y132{bottom:352.937200pt;}
.ya3{bottom:353.512000pt;}
.y37{bottom:353.528800pt;}
.yea{bottom:355.185333pt;}
.y1c9{bottom:356.407867pt;}
.y1ea{bottom:359.137867pt;}
.y24d{bottom:359.347867pt;}
.y154{bottom:362.020933pt;}
.y1b2{bottom:362.203867pt;}
.yc8{bottom:362.273200pt;}
.y22b{bottom:363.687867pt;}
.y12{bottom:366.662133pt;}
.y82{bottom:366.689200pt;}
.y196{bottom:369.763867pt;}
.y110{bottom:370.001200pt;}
.y175{bottom:370.519867pt;}
.ya2{bottom:372.019333pt;}
.y36{bottom:372.036133pt;}
.ye9{bottom:373.800000pt;}
.y20a{bottom:374.047867pt;}
.y1e9{bottom:377.407867pt;}
.y24c{bottom:377.967867pt;}
.y1b1{bottom:381.047867pt;}
.y153{bottom:381.172933pt;}
.yc7{bottom:381.409200pt;}
.y22a{bottom:382.643867pt;}
.y1c8{bottom:383.287867pt;}
.y81{bottom:384.843867pt;}
.y5b{bottom:384.913467pt;}
.y10f{bottom:388.017867pt;}
.y174{bottom:388.607867pt;}
.y131{bottom:390.291467pt;}
.ya1{bottom:390.526667pt;}
.y35{bottom:390.543467pt;}
.y11{bottom:390.667467pt;}
.ye8{bottom:392.414667pt;}
.y209{bottom:393.241867pt;}
.y1b0{bottom:399.891867pt;}
.y152{bottom:400.324933pt;}
.yc6{bottom:400.545200pt;}
.y1c7{bottom:402.607867pt;}
.y80{bottom:402.998533pt;}
.y1e8{bottom:403.237867pt;}
.y24b{bottom:404.147867pt;}
.y10e{bottom:406.034533pt;}
.ya0{bottom:409.034000pt;}
.y34{bottom:409.050800pt;}
.y229{bottom:409.159867pt;}
.ye7{bottom:411.029333pt;}
.y130{bottom:412.089467pt;}
.y208{bottom:412.435867pt;}
.y173{bottom:414.255867pt;}
.y10{bottom:414.672800pt;}
.y195{bottom:415.011867pt;}
.y26b{bottom:416.467867pt;}
.y151{bottom:419.476933pt;}
.yc5{bottom:419.681200pt;}
.y7f{bottom:421.153200pt;}
.y1e7{bottom:421.507867pt;}
.y1c6{bottom:421.927867pt;}
.y24a{bottom:422.767867pt;}
.y10d{bottom:424.051200pt;}
.y1af{bottom:426.295867pt;}
.y33{bottom:427.558133pt;}
.y228{bottom:428.115867pt;}
.ye6{bottom:429.644000pt;}
.y207{bottom:431.629867pt;}
.y172{bottom:432.343867pt;}
.y194{bottom:433.855867pt;}
.y26a{bottom:435.017867pt;}
.yf{bottom:438.678133pt;}
.yc4{bottom:438.817200pt;}
.y7e{bottom:439.307867pt;}
.y1e6{bottom:439.777867pt;}
.y5a{bottom:440.227867pt;}
.y10c{bottom:442.067867pt;}
.y1ae{bottom:445.139867pt;}
.y32{bottom:446.065467pt;}
.y150{bottom:446.188933pt;}
.y9f{bottom:446.434400pt;}
.ye5{bottom:448.258667pt;}
.y1c5{bottom:448.807867pt;}
.y249{bottom:448.947867pt;}
.y171{bottom:450.431867pt;}
.y193{bottom:452.699867pt;}
.y269{bottom:453.567867pt;}
.y227{bottom:454.631867pt;}
.y287{bottom:456.171333pt;}
.y7d{bottom:457.462533pt;}
.yc3{bottom:457.953200pt;}
.y59{bottom:458.336533pt;}
.y206{bottom:458.383867pt;}
.y10b{bottom:460.084533pt;}
.y1ad{bottom:463.983867pt;}
.y31{bottom:464.572800pt;}
.y14f{bottom:465.340933pt;}
.y1e5{bottom:465.607867pt;}
.ye4{bottom:466.873333pt;}
.y248{bottom:467.567867pt;}
.y12f{bottom:467.888133pt;}
.y1c4{bottom:468.127867pt;}
.y170{bottom:468.519867pt;}
.y192{bottom:471.543867pt;}
.y226{bottom:473.587867pt;}
.y286{bottom:474.171333pt;}
.y7c{bottom:475.617200pt;}
.y58{bottom:476.445200pt;}
.yc2{bottom:477.089200pt;}
.y205{bottom:477.577867pt;}
.y10a{bottom:478.101200pt;}
.y268{bottom:479.677867pt;}
.ye{bottom:481.599200pt;}
.y1ac{bottom:482.827867pt;}
.y30{bottom:483.080133pt;}
.y1e4{bottom:483.877867pt;}
.y14e{bottom:484.492933pt;}
.ye3{bottom:485.488000pt;}
.y247{bottom:486.187867pt;}
.y12e{bottom:486.349467pt;}
.y1c3{bottom:487.447867pt;}
.y285{bottom:492.171333pt;}
.y7b{bottom:493.771867pt;}
.y16f{bottom:494.167867pt;}
.y57{bottom:494.553867pt;}
.y109{bottom:496.117867pt;}
.yc1{bottom:496.225200pt;}
.y204{bottom:496.771867pt;}
.y191{bottom:497.947867pt;}
.y267{bottom:498.227867pt;}
.y225{bottom:500.103867pt;}
.y2f{bottom:501.587467pt;}
.y1ab{bottom:501.671867pt;}
.y1e3{bottom:502.147867pt;}
.y14d{bottom:503.644933pt;}
.y12d{bottom:504.810800pt;}
.yd{bottom:509.607200pt;}
.y284{bottom:510.171333pt;}
.y7a{bottom:511.926533pt;}
.y16e{bottom:512.255867pt;}
.y246{bottom:512.367867pt;}
.y56{bottom:512.662533pt;}
.y108{bottom:514.134533pt;}
.y1c2{bottom:514.327867pt;}
.yc0{bottom:515.361200pt;}
.y190{bottom:516.791867pt;}
.y224{bottom:519.059867pt;}
.y1e2{bottom:520.417867pt;}
.y1aa{bottom:520.515867pt;}
.y9e{bottom:521.185733pt;}
.ye2{bottom:523.004667pt;}
.y12c{bottom:523.272133pt;}
.y203{bottom:523.525867pt;}
.y266{bottom:524.337867pt;}
.y283{bottom:528.171333pt;}
.y79{bottom:530.081200pt;}
.y14c{bottom:530.356933pt;}
.y55{bottom:530.771200pt;}
.y245{bottom:530.987867pt;}
.y107{bottom:532.151200pt;}
.y1c1{bottom:533.647867pt;}
.ybf{bottom:534.497200pt;}
.y18f{bottom:535.635867pt;}
.yc{bottom:537.615200pt;}
.y16d{bottom:537.903867pt;}
.y1e1{bottom:538.687867pt;}
.y2e{bottom:538.989600pt;}
.y1a9{bottom:539.359867pt;}
.y12b{bottom:541.733467pt;}
.y202{bottom:542.719867pt;}
.y265{bottom:542.887867pt;}
.y9d{bottom:543.019733pt;}
.y223{bottom:545.575867pt;}
.y282{bottom:546.171333pt;}
.y78{bottom:548.235867pt;}
.y54{bottom:548.879867pt;}
.y14b{bottom:549.508933pt;}
.y244{bottom:549.607867pt;}
.y106{bottom:550.167867pt;}
.ybe{bottom:553.633200pt;}
.y18e{bottom:554.479867pt;}
.y16c{bottom:555.991867pt;}
.y12a{bottom:560.194800pt;}
.y1c0{bottom:560.527867pt;}
.y281{bottom:564.171333pt;}
.y1e0{bottom:564.517867pt;}
.y222{bottom:564.531867pt;}
.yb{bottom:565.623200pt;}
.y1a8{bottom:565.763867pt;}
.y77{bottom:566.390533pt;}
.y53{bottom:566.988533pt;}
.y105{bottom:568.184533pt;}
.y264{bottom:568.997867pt;}
.y201{bottom:569.473867pt;}
.ybd{bottom:572.769200pt;}
.y16b{bottom:574.079867pt;}
.y243{bottom:575.787867pt;}
.y14a{bottom:576.220933pt;}
.y129{bottom:578.656133pt;}
.ye1{bottom:579.025200pt;}
.y1bf{bottom:579.847867pt;}
.y18d{bottom:580.883867pt;}
.y76{bottom:584.545200pt;}
.y1a7{bottom:584.607867pt;}
.y52{bottom:585.097200pt;}
.y104{bottom:586.201200pt;}
.y263{bottom:587.547867pt;}
.y200{bottom:588.667867pt;}
.y1df{bottom:590.347867pt;}
.y221{bottom:591.047867pt;}
.ybc{bottom:591.905200pt;}
.y280{bottom:593.504667pt;}
.ya{bottom:593.631200pt;}
.y242{bottom:594.407867pt;}
.y2d{bottom:594.843067pt;}
.y149{bottom:595.372933pt;}
.y128{bottom:597.117467pt;}
.ye0{bottom:597.639867pt;}
.y9c{bottom:598.820533pt;}
.y1be{bottom:599.167867pt;}
.y16a{bottom:599.727867pt;}
.y75{bottom:602.699867pt;}
.y51{bottom:603.205867pt;}
.y103{bottom:604.217867pt;}
.y1de{bottom:608.617867pt;}
.y220{bottom:610.003867pt;}
.y1a6{bottom:611.011867pt;}
.ybb{bottom:611.041200pt;}
.y241{bottom:613.027867pt;}
.y262{bottom:613.657867pt;}
.y2c{bottom:613.998000pt;}
.y148{bottom:614.524933pt;}
.y1ff{bottom:615.421867pt;}
.y127{bottom:615.578800pt;}
.ydf{bottom:616.254533pt;}
.y9b{bottom:617.327867pt;}
.y169{bottom:617.815867pt;}
.y18c{bottom:618.571867pt;}
.y74{bottom:620.854533pt;}
.y50{bottom:621.314533pt;}
.y9{bottom:621.639200pt;}
.y102{bottom:622.234533pt;}
.y1bd{bottom:626.047867pt;}
.yba{bottom:630.177200pt;}
.y27f{bottom:630.398000pt;}
.y2b{bottom:631.838000pt;}
.y261{bottom:632.207867pt;}
.y126{bottom:634.040133pt;}
.y1dd{bottom:634.447867pt;}
.y1fe{bottom:634.615867pt;}
.yde{bottom:634.869200pt;}
.y9a{bottom:635.835200pt;}
.y168{bottom:635.903867pt;}
.y21f{bottom:636.519867pt;}
.y18b{bottom:637.415867pt;}
.y73{bottom:639.009200pt;}
.y240{bottom:639.207867pt;}
.y4f{bottom:639.423200pt;}
.y101{bottom:640.251200pt;}
.y147{bottom:641.236933pt;}
.y1bc{bottom:645.367867pt;}
.y27e{bottom:647.731333pt;}
.yb9{bottom:649.313200pt;}
.y2a{bottom:649.678000pt;}
.y125{bottom:652.501467pt;}
.y1dc{bottom:652.717867pt;}
.ydd{bottom:653.483867pt;}
.y1fd{bottom:653.809867pt;}
.y167{bottom:653.991867pt;}
.y99{bottom:654.342533pt;}
.y21e{bottom:655.475867pt;}
.y1a5{bottom:656.259867pt;}
.y72{bottom:657.163867pt;}
.y4e{bottom:657.531867pt;}
.y23f{bottom:657.827867pt;}
.y100{bottom:658.267867pt;}
.y260{bottom:658.317867pt;}
.y18a{bottom:663.819867pt;}
.y27d{bottom:665.064667pt;}
.y29{bottom:667.518000pt;}
.yb8{bottom:668.449200pt;}
.y124{bottom:670.962800pt;}
.ydc{bottom:672.098533pt;}
.y1bb{bottom:672.247867pt;}
.y98{bottom:672.849867pt;}
.y1fc{bottom:673.003867pt;}
.y21d{bottom:674.431867pt;}
.y1a4{bottom:675.103867pt;}
.y71{bottom:675.318533pt;}
.y4d{bottom:675.640533pt;}
.y8{bottom:676.090667pt;}
.yff{bottom:676.284533pt;}
.y23e{bottom:676.447867pt;}
.y25f{bottom:676.867867pt;}
.y1db{bottom:678.547867pt;}
.y166{bottom:679.639867pt;}
.y27c{bottom:682.398000pt;}
.y189{bottom:682.663867pt;}
.y28{bottom:685.358000pt;}
.y146{bottom:687.493200pt;}
.yb7{bottom:687.585200pt;}
.y123{bottom:689.424133pt;}
.ydb{bottom:690.713200pt;}
.y97{bottom:691.357200pt;}
.y1ba{bottom:691.567867pt;}
.y21c{bottom:693.387867pt;}
.y70{bottom:693.473200pt;}
.y4c{bottom:693.749200pt;}
.yfe{bottom:694.301200pt;}
.y23d{bottom:695.067867pt;}
.y25e{bottom:695.417867pt;}
.y1da{bottom:696.817867pt;}
.y165{bottom:697.727867pt;}
.y27b{bottom:699.731333pt;}
.y1fb{bottom:699.757867pt;}
.y188{bottom:701.507867pt;}
.y7{bottom:702.330667pt;}
.y27{bottom:703.198000pt;}
.y145{bottom:706.644533pt;}
.yb6{bottom:706.721200pt;}
.y122{bottom:707.885467pt;}
.yda{bottom:709.327867pt;}
.y96{bottom:709.864533pt;}
.y6f{bottom:711.627867pt;}
.y4b{bottom:711.857867pt;}
.yfd{bottom:712.317867pt;}
.y1d9{bottom:715.087867pt;}
.y164{bottom:715.815867pt;}
.y27a{bottom:717.064667pt;}
.y1b9{bottom:718.447867pt;}
.y1fa{bottom:718.951867pt;}
.y21b{bottom:719.903867pt;}
.y187{bottom:720.351867pt;}
.y6{bottom:721.010667pt;}
.y26{bottom:721.038000pt;}
.y23c{bottom:721.247867pt;}
.y25d{bottom:721.527867pt;}
.y144{bottom:725.795867pt;}
.yb5{bottom:725.857200pt;}
.y121{bottom:726.346800pt;}
.yd9{bottom:727.942533pt;}
.y95{bottom:728.371867pt;}
.y6e{bottom:729.782533pt;}
.y4a{bottom:729.966533pt;}
.yfc{bottom:730.334533pt;}
.y279{bottom:734.398000pt;}
.y1b8{bottom:737.767867pt;}
.y1f9{bottom:738.145867pt;}
.y21a{bottom:738.859867pt;}
.y25{bottom:738.878000pt;}
.y23b{bottom:739.867867pt;}
.y25c{bottom:740.077867pt;}
.y1d8{bottom:740.917867pt;}
.y163{bottom:741.463867pt;}
.y120{bottom:744.808133pt;}
.y143{bottom:744.947200pt;}
.yb4{bottom:744.993200pt;}
.yd8{bottom:746.557200pt;}
.y186{bottom:746.755867pt;}
.y94{bottom:746.879200pt;}
.y5{bottom:747.250667pt;}
.y6d{bottom:747.937200pt;}
.y49{bottom:748.075200pt;}
.yfb{bottom:748.351200pt;}
.y278{bottom:751.731333pt;}
.y24{bottom:756.718000pt;}
.y1b7{bottom:757.087867pt;}
.y1f8{bottom:757.339867pt;}
.y219{bottom:757.815867pt;}
.y23a{bottom:758.487867pt;}
.y25b{bottom:758.627867pt;}
.y1d7{bottom:759.187867pt;}
.y162{bottom:759.551867pt;}
.y11f{bottom:763.269467pt;}
.y142{bottom:764.098533pt;}
.yb3{bottom:764.129200pt;}
.yd7{bottom:765.171867pt;}
.y93{bottom:765.386533pt;}
.y185{bottom:765.599867pt;}
.y4{bottom:765.930667pt;}
.y6c{bottom:766.091867pt;}
.y48{bottom:766.183867pt;}
.yfa{bottom:766.367867pt;}
.y277{bottom:769.064667pt;}
.y23{bottom:774.558000pt;}
.y141{bottom:783.249867pt;}
.yb2{bottom:783.265200pt;}
.yd6{bottom:783.786533pt;}
.y92{bottom:783.893867pt;}
.y1b6{bottom:783.967867pt;}
.y1f7{bottom:784.093867pt;}
.y6b{bottom:784.246533pt;}
.y47{bottom:784.292533pt;}
.y218{bottom:784.331867pt;}
.yf9{bottom:784.384533pt;}
.y184{bottom:784.443867pt;}
.y3{bottom:784.610667pt;}
.y239{bottom:784.667867pt;}
.y25a{bottom:784.737867pt;}
.y1d6{bottom:785.017867pt;}
.y161{bottom:785.199867pt;}
.y276{bottom:786.398000pt;}
.y11e{bottom:800.627733pt;}
.y46{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:803.731333pt;}
.y21{bottom:842.834667pt;}
.y20{bottom:858.834667pt;}
.he{height:37.395833pt;}
.ha{height:46.119792pt;}
.h4{height:46.744792pt;}
.h3{height:49.082031pt;}
.h9{height:49.947917pt;}
.h10{height:52.445312pt;}
.hd{height:53.756510pt;}
.hf{height:54.115885pt;}
.hc{height:57.440104pt;}
.h2{height:58.430990pt;}
.hb{height:63.105469pt;}
.h7{height:65.442708pt;}
.h8{height:69.927083pt;}
.h5{height:84.140625pt;}
.h6{height:89.906250pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.593467pt;}
.xa{left:73.264800pt;}
.x1{left:74.375600pt;}
.x6{left:75.653867pt;}
.xe{left:76.668133pt;}
.xf{left:90.491733pt;}
.xc{left:91.486533pt;}
.x5{left:93.360533pt;}
.x7{left:94.547200pt;}
.xd{left:178.753333pt;}
.xb{left:179.960533pt;}
.x8{left:189.034667pt;}
.x4{left:201.913600pt;}
.x2{left:206.756800pt;}
.x3{left:207.781200pt;}
}




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