
    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_d62e619301e0620708c9888e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_81f74b26c74e38952dfbc59d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.208008;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_c91942aae3b7cd3bff04abb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.207031;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;}
.m5{transform:matrix(0.041264,-0.246571,0.246571,0.041264,0,0);-ms-transform:matrix(0.041264,-0.246571,0.246571,0.041264,0,0);-webkit-transform:matrix(0.041264,-0.246571,0.246571,0.041264,0,0);}
.m11{transform:matrix(0.043411,0.246202,-0.246202,0.043411,0,0);-ms-transform:matrix(0.043411,0.246202,-0.246202,0.043411,0,0);-webkit-transform:matrix(0.043411,0.246202,-0.246202,0.043411,0,0);}
.m2{transform:matrix(0.060480,-0.242574,0.242574,0.060480,0,0);-ms-transform:matrix(0.060480,-0.242574,0.242574,0.060480,0,0);-webkit-transform:matrix(0.060480,-0.242574,0.242574,0.060480,0,0);}
.m12{transform:matrix(0.081391,-0.236380,0.236380,0.081391,0,0);-ms-transform:matrix(0.081391,-0.236380,0.236380,0.081391,0,0);-webkit-transform:matrix(0.081391,-0.236380,0.236380,0.081391,0,0);}
.m4{transform:matrix(0.099690,-0.229264,0.229264,0.099690,0,0);-ms-transform:matrix(0.099690,-0.229264,0.229264,0.099690,0,0);-webkit-transform:matrix(0.099690,-0.229264,0.229264,0.099690,0,0);}
.m13{transform:matrix(0.145175,0.203529,-0.203529,0.145175,0,0);-ms-transform:matrix(0.145175,0.203529,-0.203529,0.145175,0,0);-webkit-transform:matrix(0.145175,0.203529,-0.203529,0.145175,0,0);}
.m15{transform:matrix(0.150454,-0.199658,0.199658,0.150454,0,0);-ms-transform:matrix(0.150454,-0.199658,0.199658,0.150454,0,0);-webkit-transform:matrix(0.150454,-0.199658,0.199658,0.150454,0,0);}
.m3{transform:matrix(0.168898,-0.184319,0.184319,0.168898,0,0);-ms-transform:matrix(0.168898,-0.184319,0.184319,0.168898,0,0);-webkit-transform:matrix(0.168898,-0.184319,0.184319,0.168898,0,0);}
.m1{transform:matrix(0.209668,-0.136159,0.136159,0.209668,0,0);-ms-transform:matrix(0.209668,-0.136159,0.136159,0.209668,0,0);-webkit-transform:matrix(0.209668,-0.136159,0.136159,0.209668,0,0);}
.m6{transform:matrix(0.224698,-0.109594,0.109594,0.224698,0,0);-ms-transform:matrix(0.224698,-0.109594,0.109594,0.224698,0,0);-webkit-transform:matrix(0.224698,-0.109594,0.109594,0.224698,0,0);}
.mc{transform:matrix(0.230126,0.097683,-0.097683,0.230126,0,0);-ms-transform:matrix(0.230126,0.097683,-0.097683,0.230126,0,0);-webkit-transform:matrix(0.230126,0.097683,-0.097683,0.230126,0,0);}
.md{transform:matrix(0.231795,-0.093653,0.093653,0.231795,0,0);-ms-transform:matrix(0.231795,-0.093653,0.093653,0.231795,0,0);-webkit-transform:matrix(0.231795,-0.093653,0.093653,0.231795,0,0);}
.mb{transform:matrix(0.236732,0.080360,-0.080360,0.236732,0,0);-ms-transform:matrix(0.236732,0.080360,-0.080360,0.236732,0,0);-webkit-transform:matrix(0.236732,0.080360,-0.080360,0.236732,0,0);}
.m14{transform:matrix(0.239705,-0.071004,0.071004,0.239705,0,0);-ms-transform:matrix(0.239705,-0.071004,0.071004,0.239705,0,0);-webkit-transform:matrix(0.239705,-0.071004,0.071004,0.239705,0,0);}
.m8{transform:matrix(0.240907,0.066811,-0.066811,0.240907,0,0);-ms-transform:matrix(0.240907,0.066811,-0.066811,0.240907,0,0);-webkit-transform:matrix(0.240907,0.066811,-0.066811,0.240907,0,0);}
.m7{transform:matrix(0.242574,-0.060480,0.060480,0.242574,0,0);-ms-transform:matrix(0.242574,-0.060480,0.060480,0.242574,0,0);-webkit-transform:matrix(0.242574,-0.060480,0.060480,0.242574,0,0);}
.m10{transform:matrix(0.242574,-0.060479,0.060479,0.242574,0,0);-ms-transform:matrix(0.242574,-0.060479,0.060479,0.242574,0,0);-webkit-transform:matrix(0.242574,-0.060479,0.060479,0.242574,0,0);}
.mf{transform:matrix(0.243592,-0.056239,0.056239,0.243592,0,0);-ms-transform:matrix(0.243592,-0.056239,0.056239,0.243592,0,0);-webkit-transform:matrix(0.243592,-0.056239,0.056239,0.243592,0,0);}
.me{transform:matrix(0.244537,-0.051975,0.051975,0.244537,0,0);-ms-transform:matrix(0.244537,-0.051975,0.051975,0.244537,0,0);-webkit-transform:matrix(0.244537,-0.051975,0.051975,0.244537,0,0);}
.m9{transform:matrix(0.246571,0.041264,-0.041264,0.246571,0,0);-ms-transform:matrix(0.246571,0.041264,-0.041264,0.246571,0,0);-webkit-transform:matrix(0.246571,0.041264,-0.041264,0.246571,0,0);}
.ma{transform:matrix(0.248742,0.025047,-0.025047,0.248742,0,0);-ms-transform:matrix(0.248742,0.025047,-0.025047,0.248742,0,0);-webkit-transform:matrix(0.248742,0.025047,-0.025047,0.248742,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-51.023400px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:4.587600px;}
.v4{vertical-align:15.036600px;}
.v5{vertical-align:19.624200px;}
.v1{vertical-align:22.624200px;}
.v2{vertical-align:34.975800px;}
.v6{vertical-align:39.451200px;}
.v7{vertical-align:46.449600px;}
.v3{vertical-align:57.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.015600px;}
.lse{letter-spacing:1.440000px;}
.ls12{letter-spacing:1.800000px;}
.ls11{letter-spacing:2.159994px;}
.ls10{letter-spacing:2.159998px;}
.lsd{letter-spacing:2.160000px;}
.ls3{letter-spacing:4.186040px;}
.ls8{letter-spacing:4.186052px;}
.ls4{letter-spacing:4.186061px;}
.ls5{letter-spacing:4.186069px;}
.ls6{letter-spacing:4.186074px;}
.lsc{letter-spacing:4.186075px;}
.ls9{letter-spacing:4.186083px;}
.lsa{letter-spacing:4.186119px;}
.ls7{letter-spacing:4.186123px;}
.lsb{letter-spacing:4.186131px;}
.ls14{letter-spacing:13.140000px;}
.ls16{letter-spacing:21.600000px;}
.ls15{letter-spacing:36.000000px;}
.ls13{letter-spacing:41.700000px;}
.ls1{letter-spacing:745.888771px;}
.lsf{letter-spacing:3426.587400px;}
.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;}
}
.ws62{word-spacing:-41.700000px;}
.ws1a{word-spacing:-29.568000px;}
.ws98{word-spacing:-21.600000px;}
.ws5a{word-spacing:-18.336000px;}
.ws1b{word-spacing:-17.856000px;}
.ws3{word-spacing:-16.896000px;}
.ws35{word-spacing:-16.416000px;}
.ws26{word-spacing:-14.784000px;}
.ws5d{word-spacing:-13.440000px;}
.ws2{word-spacing:-9.849600px;}
.ws38{word-spacing:-7.632000px;}
.ws3e{word-spacing:-6.864000px;}
.ws83{word-spacing:-6.624000px;}
.ws52{word-spacing:-6.096000px;}
.ws6d{word-spacing:-5.700000px;}
.ws1f{word-spacing:-4.944000px;}
.ws8f{word-spacing:-2.928000px;}
.ws85{word-spacing:-2.832000px;}
.ws4{word-spacing:-2.784000px;}
.ws91{word-spacing:-2.496000px;}
.ws25{word-spacing:-2.160000px;}
.ws8d{word-spacing:-2.112000px;}
.ws48{word-spacing:-2.064000px;}
.ws27{word-spacing:-1.968000px;}
.ws8c{word-spacing:-1.824000px;}
.ws5f{word-spacing:-1.800000px;}
.ws61{word-spacing:-1.776000px;}
.ws8b{word-spacing:-1.728000px;}
.ws60{word-spacing:-1.584000px;}
.ws34{word-spacing:-1.554000px;}
.ws88{word-spacing:-1.536000px;}
.ws1c{word-spacing:-1.440000px;}
.ws6{word-spacing:-1.152000px;}
.ws6b{word-spacing:-1.104000px;}
.ws43{word-spacing:-0.912000px;}
.ws6a{word-spacing:-0.768000px;}
.ws41{word-spacing:-0.720000px;}
.ws87{word-spacing:-0.384000px;}
.ws86{word-spacing:-0.336000px;}
.ws0{word-spacing:0.000000px;}
.ws22{word-spacing:0.096000px;}
.ws19{word-spacing:0.576000px;}
.ws7{word-spacing:0.864000px;}
.ws5{word-spacing:0.912000px;}
.wsd{word-spacing:1.248000px;}
.ws7f{word-spacing:1.440000px;}
.ws9a{word-spacing:1.488000px;}
.ws3a{word-spacing:1.728000px;}
.ws18{word-spacing:1.824000px;}
.ws37{word-spacing:1.872000px;}
.ws46{word-spacing:1.968000px;}
.ws47{word-spacing:2.016000px;}
.ws45{word-spacing:2.112000px;}
.ws44{word-spacing:2.160000px;}
.ws39{word-spacing:2.256000px;}
.ws2a{word-spacing:2.304000px;}
.ws84{word-spacing:2.352000px;}
.ws17{word-spacing:2.544000px;}
.ws3f{word-spacing:2.640000px;}
.ws28{word-spacing:2.928000px;}
.ws2b{word-spacing:3.072000px;}
.wsa{word-spacing:3.456000px;}
.ws9{word-spacing:3.552000px;}
.ws3c{word-spacing:3.600000px;}
.ws8e{word-spacing:3.792000px;}
.ws29{word-spacing:3.936000px;}
.ws63{word-spacing:3.984000px;}
.ws65{word-spacing:4.032000px;}
.ws6f{word-spacing:4.464000px;}
.ws31{word-spacing:4.620000px;}
.ws1d{word-spacing:4.656000px;}
.ws23{word-spacing:5.040000px;}
.ws2e{word-spacing:5.418000px;}
.ws8a{word-spacing:5.616000px;}
.ws5c{word-spacing:5.640000px;}
.ws4a{word-spacing:6.192000px;}
.ws49{word-spacing:6.336000px;}
.ws6e{word-spacing:6.900000px;}
.ws42{word-spacing:7.056000px;}
.ws21{word-spacing:7.392000px;}
.ws9b{word-spacing:7.584000px;}
.ws7e{word-spacing:7.680000px;}
.ws2d{word-spacing:7.896000px;}
.ws11{word-spacing:7.920000px;}
.ws78{word-spacing:7.968000px;}
.ws10{word-spacing:8.160000px;}
.ws3d{word-spacing:8.208000px;}
.ws95{word-spacing:9.360000px;}
.ws7c{word-spacing:9.456000px;}
.ws80{word-spacing:10.140000px;}
.ws92{word-spacing:10.512000px;}
.ws1e{word-spacing:11.136000px;}
.ws69{word-spacing:11.472000px;}
.ws50{word-spacing:12.000000px;}
.ws6c{word-spacing:12.864000px;}
.wsf{word-spacing:13.152000px;}
.ws89{word-spacing:14.064000px;}
.ws76{word-spacing:14.304000px;}
.ws3b{word-spacing:14.448000px;}
.ws81{word-spacing:15.504000px;}
.ws2c{word-spacing:15.834000px;}
.ws16{word-spacing:15.888000px;}
.ws82{word-spacing:15.984000px;}
.ws40{word-spacing:16.128000px;}
.ws15{word-spacing:16.368000px;}
.ws93{word-spacing:16.752000px;}
.ws75{word-spacing:17.712000px;}
.ws90{word-spacing:17.856000px;}
.wsb{word-spacing:18.480000px;}
.ws77{word-spacing:18.816000px;}
.ws71{word-spacing:18.960000px;}
.wsc{word-spacing:19.008000px;}
.ws7d{word-spacing:19.440000px;}
.ws72{word-spacing:19.488000px;}
.ws20{word-spacing:20.400000px;}
.ws14{word-spacing:20.976000px;}
.ws58{word-spacing:22.080000px;}
.ws24{word-spacing:22.176000px;}
.ws8{word-spacing:23.376000px;}
.ws79{word-spacing:23.640000px;}
.ws74{word-spacing:23.712000px;}
.ws54{word-spacing:24.192000px;}
.ws53{word-spacing:26.400000px;}
.ws7a{word-spacing:27.696000px;}
.ws68{word-spacing:28.080000px;}
.wse{word-spacing:28.608000px;}
.ws9c{word-spacing:29.088000px;}
.ws51{word-spacing:31.680000px;}
.ws12{word-spacing:34.032000px;}
.ws33{word-spacing:34.734000px;}
.ws70{word-spacing:35.088000px;}
.ws4d{word-spacing:37.632000px;}
.ws55{word-spacing:41.280000px;}
.ws5b{word-spacing:44.760000px;}
.ws73{word-spacing:46.128000px;}
.ws67{word-spacing:46.500000px;}
.ws64{word-spacing:47.088000px;}
.ws7b{word-spacing:47.664000px;}
.ws57{word-spacing:47.952000px;}
.ws94{word-spacing:54.144000px;}
.ws5e{word-spacing:57.840000px;}
.ws9d{word-spacing:59.616000px;}
.ws4f{word-spacing:59.760000px;}
.ws4c{word-spacing:60.096000px;}
.ws13{word-spacing:61.344000px;}
.ws56{word-spacing:63.888000px;}
.ws66{word-spacing:67.776000px;}
.ws2f{word-spacing:77.196000px;}
.ws4b{word-spacing:81.840000px;}
.ws36{word-spacing:86.688000px;}
.ws32{word-spacing:106.344000px;}
.ws30{word-spacing:110.670000px;}
.ws96{word-spacing:114.864000px;}
.ws4e{word-spacing:118.272000px;}
.ws99{word-spacing:146.256000px;}
.ws97{word-spacing:206.928000px;}
.ws59{word-spacing:2680.175400px;}
.ws1{word-spacing:2703.062400px;}
._29{margin-left:-7523.410200px;}
._16{margin-left:-4523.794800px;}
._52{margin-left:-3463.269600px;}
._1c{margin-left:-55.540800px;}
._36{margin-left:-41.670000px;}
._3d{margin-left:-35.790000px;}
._3c{margin-left:-34.206000px;}
._a{margin-left:-21.823200px;}
._38{margin-left:-13.284000px;}
._37{margin-left:-11.340000px;}
._1e{margin-left:-9.259200px;}
._48{margin-left:-7.555200px;}
._7{margin-left:-5.995200px;}
._2{margin-left:-4.773600px;}
._5{margin-left:-3.172800px;}
._0{margin-left:-1.483200px;}
._f{width:1.442400px;}
._13{width:2.731200px;}
._40{width:4.032000px;}
._45{width:5.174400px;}
._49{width:6.211200px;}
._c{width:7.624800px;}
._47{width:10.012800px;}
._46{width:11.212800px;}
._8{width:18.962400px;}
._41{width:21.024000px;}
._54{width:42.624000px;}
._3e{width:47.700000px;}
._42{width:51.681600px;}
._25{width:52.804800px;}
._3b{width:57.840000px;}
._39{width:63.540000px;}
._33{width:71.280000px;}
._1a{width:73.344000px;}
._18{width:75.024000px;}
._3a{width:77.682000px;}
._32{width:81.000000px;}
._1b{width:82.416000px;}
._17{width:89.472000px;}
._55{width:90.624000px;}
._19{width:96.336000px;}
._2c{width:103.032000px;}
._2e{width:104.040000px;}
._30{width:106.776000px;}
._44{width:116.208000px;}
._4c{width:117.643200px;}
._31{width:125.760000px;}
._34{width:127.482000px;}
._43{width:142.992000px;}
._b{width:189.223200px;}
._53{width:201.722400px;}
._56{width:209.917800px;}
._35{width:232.266000px;}
._2d{width:422.662800px;}
._4a{width:521.280000px;}
._e{width:606.745200px;}
._2b{width:699.618000px;}
._d{width:817.063200px;}
._10{width:902.877000px;}
._4{width:961.798800px;}
._4d{width:1283.224800px;}
._4e{width:1505.700000px;}
._1{width:1506.750600px;}
._11{width:1569.990600px;}
._50{width:1582.234800px;}
._2f{width:2745.103800px;}
._28{width:3116.472600px;}
._15{width:3446.847000px;}
._3{width:4022.935800px;}
._1d{width:4066.095000px;}
._20{width:4102.528800px;}
._21{width:4105.675200px;}
._3f{width:4206.942600px;}
._12{width:4217.647800px;}
._51{width:4239.180600px;}
._14{width:4263.852000px;}
._4b{width:4271.357400px;}
._2a{width:4305.298200px;}
._22{width:4378.317000px;}
._23{width:4383.740400px;}
._26{width:4442.987400px;}
._24{width:4462.285200px;}
._1f{width:4464.418200px;}
._27{width:4553.483400px;}
._9{width:4587.588000px;}
._4f{width:4604.629800px;}
._6{width:4706.677200px;}
.fc2{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(110,110,110);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.906931px;}
.fs4{font-size:27.906995px;}
.fsa{font-size:27.907014px;}
.fs6{font-size:27.907071px;}
.fs7{font-size:27.907128px;}
.fs8{font-size:27.907162px;}
.fse{font-size:27.907169px;}
.fsb{font-size:27.907218px;}
.fs10{font-size:27.907386px;}
.fsc{font-size:27.907459px;}
.fs9{font-size:27.907484px;}
.fsd{font-size:27.907538px;}
.fs15{font-size:28.799850px;}
.fs13{font-size:28.800000px;}
.fs17{font-size:28.800008px;}
.fs16{font-size:28.800123px;}
.fs14{font-size:28.800186px;}
.fsf{font-size:37.209600px;}
.fs11{font-size:41.860800px;}
.fs1b{font-size:41.999749px;}
.fs1a{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1c{font-size:60.000000px;}
.fs3{font-size:65.116800px;}
.fs12{font-size:67.200000px;}
.fs19{font-size:71.999815px;}
.fs18{font-size:71.999944px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:43.487700px;}
.y1{bottom:50.687700px;}
.y2{bottom:57.887700px;}
.y8d{bottom:172.142400px;}
.y2e{bottom:183.903600px;}
.y8c{bottom:186.542250px;}
.y8b{bottom:200.942250px;}
.y1b8{bottom:201.109200px;}
.y2d{bottom:206.229300px;}
.y11f{bottom:206.767500px;}
.y11e{bottom:221.167500px;}
.y2c{bottom:228.555150px;}
.ybe{bottom:231.372750px;}
.y11d{bottom:235.567500px;}
.y30{bottom:238.890450px;}
.y2f{bottom:243.988050px;}
.ybd{bottom:245.772750px;}
.y2b{bottom:250.880850px;}
.y8a{bottom:255.891900px;}
.y11c{bottom:264.367500px;}
.y89{bottom:270.291900px;}
.ye7{bottom:272.997000px;}
.y2a{bottom:273.206550px;}
.y126{bottom:273.978750px;}
.ybc{bottom:274.572750px;}
.y88{bottom:284.691900px;}
.y1bf{bottom:285.173850px;}
.y125{bottom:288.378750px;}
.y186{bottom:293.799300px;}
.y29{bottom:295.532400px;}
.y9b{bottom:296.317050px;}
.y12f{bottom:297.301800px;}
.y87{bottom:299.091900px;}
.y1be{bottom:299.573850px;}
.ye6{bottom:301.797000px;}
.ybb{bottom:303.372750px;}
.y1bd{bottom:313.973850px;}
.ye5{bottom:316.197000px;}
.y42{bottom:317.065200px;}
.yba{bottom:317.772750px;}
.y28{bottom:317.858100px;}
.yae{bottom:320.372250px;}
.yb9{bottom:332.172750px;}
.yad{bottom:334.772250px;}
.y27{bottom:340.183800px;}
.ye4{bottom:344.997000px;}
.y26{bottom:351.346800px;}
.y90{bottom:352.549500px;}
.y91{bottom:358.450650px;}
.yd{bottom:359.470800px;}
.yb8{bottom:360.972750px;}
.y1bb{bottom:364.997400px;}
.y25{bottom:373.672500px;}
.ye3{bottom:373.797000px;}
.yb7{bottom:375.372750px;}
.y1d2{bottom:386.512350px;}
.ye2{bottom:388.196850px;}
.yb6{bottom:389.772750px;}
.y24{bottom:395.998200px;}
.y1f5{bottom:396.887250px;}
.y1d1{bottom:400.912350px;}
.y1d0{bottom:415.312350px;}
.y23{bottom:418.324050px;}
.yb5{bottom:418.572750px;}
.y41{bottom:419.040000px;}
.y124{bottom:430.022100px;}
.yb4{bottom:432.972750px;}
.y187{bottom:434.091900px;}
.y22{bottom:440.649750px;}
.y7{bottom:443.609100px;}
.y123{bottom:444.422100px;}
.y159{bottom:452.250000px;}
.y6{bottom:458.313750px;}
.y8{bottom:461.895150px;}
.y21{bottom:462.975600px;}
.y1b9{bottom:464.918700px;}
.yd4{bottom:465.231150px;}
.y142{bottom:466.650000px;}
.y1de{bottom:467.427450px;}
.y40{bottom:475.387350px;}
.yb3{bottom:476.172750px;}
.y141{bottom:481.050000px;}
.y1dd{bottom:481.827300px;}
.y1d6{bottom:484.435200px;}
.y20{bottom:485.301300px;}
.y158{bottom:495.450000px;}
.y1dc{bottom:496.227300px;}
.y1bc{bottom:498.402900px;}
.y1d5{bottom:498.835200px;}
.y122{bottom:500.308950px;}
.y1f{bottom:507.627000px;}
.y9a{bottom:508.915350px;}
.y140{bottom:509.850000px;}
.y1db{bottom:510.627300px;}
.y1d4{bottom:513.235200px;}
.y121{bottom:514.708950px;}
.y1b7{bottom:518.550150px;}
.y14{bottom:518.583450px;}
.y13f{bottom:524.250000px;}
.y1d3{bottom:527.635200px;}
.y1e{bottom:529.952850px;}
.y1b6{bottom:532.950150px;}
.yeb{bottom:541.069350px;}
.yb{bottom:543.583800px;}
.y1c7{bottom:547.251000px;}
.y1d{bottom:552.278550px;}
.y13e{bottom:553.050000px;}
.yea{bottom:555.469350px;}
.y3c{bottom:558.655050px;}
.y1c6{bottom:561.651000px;}
.y139{bottom:571.050000px;}
.y1c{bottom:574.604250px;}
.ye9{bottom:584.269350px;}
.y1b5{bottom:590.351700px;}
.y185{bottom:590.789550px;}
.ye{bottom:593.675400px;}
.y1b{bottom:596.930100px;}
.ye8{bottom:598.669350px;}
.yac{bottom:600.540900px;}
.yab{bottom:614.940900px;}
.y1a{bottom:619.255800px;}
.y18d{bottom:621.954750px;}
.y1b4{bottom:626.493450px;}
.y120{bottom:627.469350px;}
.y195{bottom:628.392600px;}
.yaa{bottom:629.340900px;}
.y133{bottom:632.605650px;}
.y18c{bottom:636.354750px;}
.y184{bottom:641.088600px;}
.y194{bottom:642.792600px;}
.y18b{bottom:650.754750px;}
.y9{bottom:651.200400px;}
.y183{bottom:655.488600px;}
.y1b3{bottom:655.676100px;}
.y15d{bottom:663.331800px;}
.y1f2{bottom:669.013200px;}
.y182{bottom:669.888600px;}
.y1b2{bottom:670.076100px;}
.y5{bottom:672.412800px;}
.y3f{bottom:677.203350px;}
.y15c{bottom:677.731800px;}
.y4{bottom:691.947750px;}
.y15b{bottom:692.131800px;}
.y1b1{bottom:699.258750px;}
.yd1{bottom:711.334350px;}
.y1b0{bottom:713.658750px;}
.y15a{bottom:720.931800px;}
.yd3{bottom:723.353250px;}
.yd0{bottom:725.734350px;}
.y18a{bottom:727.428150px;}
.yd2{bottom:737.753250px;}
.y19e{bottom:738.302850px;}
.y181{bottom:741.828150px;}
.y19d{bottom:752.702850px;}
.ycf{bottom:754.534350px;}
.y1e6{bottom:758.432100px;}
.y67{bottom:761.134500px;}
.y3e{bottom:761.562000px;}
.y66{bottom:762.634800px;}
.y19c{bottom:767.102850px;}
.yce{bottom:768.934350px;}
.y1e5{bottom:772.832100px;}
.y19b{bottom:781.502850px;}
.y18f{bottom:782.172300px;}
.y97{bottom:785.293350px;}
.y83{bottom:785.981250px;}
.y3b{bottom:786.434550px;}
.y18e{bottom:796.572300px;}
.y12e{bottom:797.102250px;}
.y3d{bottom:798.528150px;}
.y99{bottom:799.466550px;}
.y82{bottom:800.381400px;}
.yfc{bottom:805.616250px;}
.y12d{bottom:811.502250px;}
.y81{bottom:814.781400px;}
.yfb{bottom:820.016250px;}
.y180{bottom:826.109250px;}
.y80{bottom:829.181250px;}
.y43{bottom:831.147300px;}
.y17f{bottom:840.509250px;}
.y7f{bottom:843.581400px;}
.yf{bottom:848.484600px;}
.y3a{bottom:853.069800px;}
.y1ed{bottom:854.309700px;}
.y7e{bottom:857.981250px;}
.y1f1{bottom:860.687550px;}
.yd6{bottom:862.959600px;}
.y11b{bottom:871.840800px;}
.y7d{bottom:872.381400px;}
.y189{bottom:876.778500px;}
.yd5{bottom:877.359600px;}
.yfa{bottom:877.616250px;}
.y1e7{bottom:881.947500px;}
.y11a{bottom:886.240800px;}
.y7c{bottom:886.781400px;}
.y188{bottom:891.178500px;}
.yf9{bottom:892.016250px;}
.y1af{bottom:898.962600px;}
.y119{bottom:900.640800px;}
.y7b{bottom:901.181250px;}
.y1ae{bottom:913.362600px;}
.y9f{bottom:914.270850px;}
.y118{bottom:915.040800px;}
.y39{bottom:916.143600px;}
.y104{bottom:927.814950px;}
.y9e{bottom:935.870850px;}
.y13{bottom:939.352050px;}
.y65{bottom:941.989050px;}
.y16f{bottom:942.202200px;}
.y103{bottom:942.215100px;}
.y117{bottom:943.840800px;}
.y1f3{bottom:945.391050px;}
.y36{bottom:946.527900px;}
.y10{bottom:946.766400px;}
.y64{bottom:948.228900px;}
.yb2{bottom:949.080000px;}
.y1ac{bottom:949.935300px;}
.y102{bottom:956.614950px;}
.y9d{bottom:957.470850px;}
.y17e{bottom:959.691900px;}
.y11{bottom:961.583250px;}
.yb1{bottom:963.480000px;}
.y138{bottom:964.613850px;}
.y8f{bottom:971.357400px;}
.y17d{bottom:974.091900px;}
.y1cf{bottom:974.446200px;}
.y16e{bottom:975.636750px;}
.y37{bottom:976.654800px;}
.y9c{bottom:979.070850px;}
.y137{bottom:982.613850px;}
.ydb{bottom:982.978500px;}
.y14b{bottom:984.697350px;}
.y8e{bottom:985.757400px;}
.y153{bottom:988.297350px;}
.y12{bottom:989.513100px;}
.y16d{bottom:990.036750px;}
.ya{bottom:990.046200px;}
.y5d{bottom:993.422100px;}
.y63{bottom:993.708000px;}
.y1aa{bottom:994.257750px;}
.yda{bottom:997.378500px;}
.y14a{bottom:999.097350px;}
.y136{bottom:1000.613850px;}
.y17{bottom:1001.208600px;}
.y5c{bottom:1002.062100px;}
.y152{bottom:1002.697350px;}
.y116{bottom:1006.617600px;}
.yb0{bottom:1006.680000px;}
.yf8{bottom:1008.275100px;}
.y5b{bottom:1010.702100px;}
.y16{bottom:1012.371450px;}
.y149{bottom:1013.497350px;}
.y151{bottom:1017.097350px;}
.y115{bottom:1021.017600px;}
.y19{bottom:1021.983150px;}
.yf7{bottom:1022.675100px;}
.y5a{bottom:1023.953400px;}
.yd9{bottom:1026.178500px;}
.y14c{bottom:1027.897350px;}
.y35{bottom:1031.475000px;}
.y18{bottom:1031.604000px;}
.y96{bottom:1032.067650px;}
.y59{bottom:1032.593400px;}
.y114{bottom:1035.417600px;}
.y1a9{bottom:1039.643100px;}
.y60{bottom:1040.159400px;}
.y148{bottom:1042.297350px;}
.y16c{bottom:1043.668350px;}
.y1e2{bottom:1045.695000px;}
.y150{bottom:1045.897350px;}
.y38{bottom:1046.286300px;}
.y5f{bottom:1048.799400px;}
.yf6{bottom:1051.475100px;}
.y147{bottom:1056.697350px;}
.y5e{bottom:1057.439400px;}
.y16b{bottom:1058.068200px;}
.y1e1{bottom:1060.095000px;}
.y14f{bottom:1060.297350px;}
.y47{bottom:1061.466450px;}
.y98{bottom:1063.088700px;}
.y113{bottom:1064.217600px;}
.yf5{bottom:1065.875100px;}
.y46{bottom:1070.106450px;}
.y146{bottom:1071.097350px;}
.y1e0{bottom:1074.495000px;}
.y14e{bottom:1074.697350px;}
.y45{bottom:1078.746450px;}
.y19a{bottom:1086.924900px;}
.y1a8{bottom:1087.123500px;}
.y1df{bottom:1088.895000px;}
.y14d{bottom:1089.097350px;}
.y157{bottom:1092.697350px;}
.y17c{bottom:1094.209950px;}
.y145{bottom:1099.897350px;}
.y199{bottom:1101.325050px;}
.y16a{bottom:1104.840000px;}
.y156{bottom:1107.097350px;}
.y34{bottom:1108.467450px;}
.yf4{bottom:1109.075100px;}
.y198{bottom:1115.725050px;}
.y112{bottom:1116.647400px;}
.y144{bottom:1117.897350px;}
.y58{bottom:1120.325100px;}
.yf3{bottom:1123.475100px;}
.yc{bottom:1124.119500px;}
.y57{bottom:1128.965100px;}
.y111{bottom:1131.047400px;}
.y165{bottom:1132.959750px;}
.y143{bottom:1135.897350px;}
.y53{bottom:1136.104500px;}
.y1a1{bottom:1137.211650px;}
.y56{bottom:1137.605100px;}
.ycd{bottom:1143.024000px;}
.y197{bottom:1144.525050px;}
.y52{bottom:1144.744500px;}
.y33{bottom:1144.832850px;}
.y110{bottom:1145.447400px;}
.y55{bottom:1146.245100px;}
.y164{bottom:1147.359600px;}
.y1a0{bottom:1151.611500px;}
.y62{bottom:1151.848800px;}
.y69{bottom:1153.332600px;}
.y51{bottom:1153.384500px;}
.y54{bottom:1154.885100px;}
.ycc{bottom:1155.624000px;}
.y68{bottom:1156.145550px;}
.y61{bottom:1160.046000px;}
.y50{bottom:1162.024500px;}
.ya9{bottom:1163.298450px;}
.y17b{bottom:1164.916950px;}
.y1e4{bottom:1170.518700px;}
.y4f{bottom:1170.664500px;}
.y10f{bottom:1174.247400px;}
.ya8{bottom:1175.898450px;}
.y44{bottom:1176.094350px;}
.y4e{bottom:1179.304500px;}
.y17a{bottom:1179.316950px;}
.y1da{bottom:1179.986400px;}
.y132{bottom:1182.438300px;}
.y1e3{bottom:1184.918700px;}
.y4d{bottom:1187.944500px;}
.y95{bottom:1189.094550px;}
.y15f{bottom:1190.361300px;}
.y179{bottom:1193.716950px;}
.y1d9{bottom:1194.386400px;}
.y4c{bottom:1196.584500px;}
.y19f{bottom:1203.698250px;}
.y15e{bottom:1204.761150px;}
.y4b{bottom:1205.224500px;}
.y178{bottom:1208.116950px;}
.y1d8{bottom:1208.786400px;}
.y1c5{bottom:1210.412100px;}
.ycb{bottom:1213.163100px;}
.y4a{bottom:1213.864500px;}
.yf2{bottom:1220.871000px;}
.y1d7{bottom:1223.186400px;}
.y10e{bottom:1229.684850px;}
.yf1{bottom:1235.271000px;}
.y196{bottom:1236.933000px;}
.y101{bottom:1238.776050px;}
.y1c3{bottom:1239.504000px;}
.y15{bottom:1240.631250px;}
.y1f4{bottom:1240.902900px;}
.y10d{bottom:1244.084700px;}
.y191{bottom:1248.007950px;}
.y100{bottom:1253.176050px;}
.y10c{bottom:1258.484850px;}
.yff{bottom:1267.576050px;}
.yca{bottom:1269.708000px;}
.y7a{bottom:1270.038900px;}
.y10b{bottom:1272.884700px;}
.yf0{bottom:1278.471000px;}
.y193{bottom:1279.772250px;}
.yc9{bottom:1282.307850px;}
.y79{bottom:1284.438900px;}
.y177{bottom:1290.282450px;}
.yd7{bottom:1291.926600px;}
.yef{bottom:1292.871000px;}
.yc8{bottom:1294.908000px;}
.y78{bottom:1298.838900px;}
.y10a{bottom:1301.684850px;}
.y176{bottom:1304.682450px;}
.yaf{bottom:1305.031350px;}
.y86{bottom:1309.441650px;}
.y77{bottom:1313.238900px;}
.y32{bottom:1320.769350px;}
.yee{bottom:1321.671000px;}
.y76{bottom:1327.638900px;}
.y75{bottom:1342.038900px;}
.yed{bottom:1350.471000px;}
.y74{bottom:1356.438900px;}
.yec{bottom:1364.871000px;}
.yc7{bottom:1375.574400px;}
.y175{bottom:1378.781700px;}
.ya7{bottom:1383.583800px;}
.yc6{bottom:1388.174400px;}
.y174{bottom:1393.181700px;}
.ya6{bottom:1396.183800px;}
.y31{bottom:1400.468550px;}
.yc5{bottom:1400.774250px;}
.yc4{bottom:1413.374400px;}
.y1ba{bottom:1420.361100px;}
.y1ce{bottom:1435.614600px;}
.y173{bottom:1436.975400px;}
.yc3{bottom:1438.574400px;}
.y109{bottom:1440.933150px;}
.y1cd{bottom:1450.014750px;}
.yc2{bottom:1451.174400px;}
.y172{bottom:1451.375400px;}
.y108{bottom:1455.333150px;}
.y1fa{bottom:1457.172300px;}
.y192{bottom:1462.106250px;}
.yc1{bottom:1463.774250px;}
.y1cc{bottom:1464.414600px;}
.y107{bottom:1469.733150px;}
.y1f9{bottom:1471.572300px;}
.yc0{bottom:1476.374400px;}
.y1cb{bottom:1478.814750px;}
.y106{bottom:1484.133150px;}
.y1ad{bottom:1491.699750px;}
.y49{bottom:1492.752150px;}
.y1ca{bottom:1493.214600px;}
.y1f6{bottom:1494.230850px;}
.ye1{bottom:1500.939300px;}
.y48{bottom:1501.392150px;}
.ybf{bottom:1501.574400px;}
.y1fd{bottom:1505.262000px;}
.y171{bottom:1506.069900px;}
.y105{bottom:1512.933150px;}
.y1fc{bottom:1519.662000px;}
.y1ab{bottom:1520.400450px;}
.y170{bottom:1520.469750px;}
.y13d{bottom:1522.080600px;}
.y73{bottom:1528.623750px;}
.yfe{bottom:1528.783500px;}
.ye0{bottom:1529.739300px;}
.y1fb{bottom:1534.062000px;}
.y155{bottom:1536.480600px;}
.y1c9{bottom:1537.959600px;}
.y72{bottom:1543.023750px;}
.yfd{bottom:1543.183350px;}
.y1f8{bottom:1548.462000px;}
.y169{bottom:1548.589800px;}
.y13c{bottom:1550.880600px;}
.y1c8{bottom:1552.359600px;}
.y71{bottom:1557.423750px;}
.ydf{bottom:1558.539150px;}
.y168{bottom:1562.989800px;}
.y1a6{bottom:1564.052550px;}
.y154{bottom:1565.280600px;}
.y1c1{bottom:1565.842500px;}
.ya5{bottom:1578.683400px;}
.ydd{bottom:1579.416300px;}
.y13b{bottom:1579.680600px;}
.y1f7{bottom:1582.477800px;}
.y1ec{bottom:1585.213200px;}
.y70{bottom:1586.223750px;}
.yde{bottom:1587.339300px;}
.y1a5{bottom:1588.501500px;}
.y1e8{bottom:1589.228400px;}
.y167{bottom:1592.172300px;}
.ydc{bottom:1593.816300px;}
.y13a{bottom:1594.080750px;}
.y6b{bottom:1598.068800px;}
.y1eb{bottom:1599.613200px;}
.y6f{bottom:1600.623750px;}
.y135{bottom:1604.880600px;}
.y166{bottom:1606.572300px;}
.ya4{bottom:1607.483400px;}
.y1ea{bottom:1614.013200px;}
.y6e{bottom:1615.023750px;}
.y6a{bottom:1618.228650px;}
.y1a7{bottom:1620.391050px;}
.ya3{bottom:1621.883400px;}
.y129{bottom:1622.030850px;}
.y134{bottom:1622.880600px;}
.y1c4{bottom:1623.915900px;}
.y94{bottom:1624.737150px;}
.y85{bottom:1628.426700px;}
.y161{bottom:1630.440150px;}
.y84{bottom:1631.214300px;}
.y1f0{bottom:1632.420000px;}
.y1a4{bottom:1632.565950px;}
.y128{bottom:1636.431000px;}
.y93{bottom:1639.137150px;}
.y1e9{bottom:1643.049900px;}
.y6d{bottom:1643.823600px;}
.y160{bottom:1644.840150px;}
.y1a3{bottom:1646.965950px;}
.ya2{bottom:1650.683400px;}
.y92{bottom:1653.537000px;}
.y1ee{bottom:1655.133900px;}
.y130{bottom:1659.721950px;}
.y1c0{bottom:1663.011900px;}
.ya1{bottom:1665.083250px;}
.y1ef{bottom:1665.763950px;}
.y163{bottom:1667.644800px;}
.y12c{bottom:1667.739600px;}
.y1a2{bottom:1672.290300px;}
.y162{bottom:1682.044800px;}
.y12b{bottom:1682.139750px;}
.y6c{bottom:1687.023750px;}
.y12a{bottom:1693.010400px;}
.y127{bottom:1694.073450px;}
.y1c2{bottom:1707.220650px;}
.ya0{bottom:1708.283400px;}
.yd8{bottom:1712.871300px;}
.y190{bottom:1718.913600px;}
.y131{bottom:1732.005450px;}
.h8{height:27.920557px;}
.h7{height:27.920621px;}
.hd{height:27.920640px;}
.h9{height:27.920698px;}
.ha{height:27.920754px;}
.hb{height:27.920788px;}
.h11{height:27.920796px;}
.he{height:27.920844px;}
.h13{height:27.921012px;}
.hf{height:27.921086px;}
.hc{height:27.921110px;}
.h10{height:27.921164px;}
.h19{height:28.813913px;}
.h17{height:28.814062px;}
.h1c{height:28.814071px;}
.h1a{height:28.814185px;}
.h18{height:28.814248px;}
.h1b{height:28.815014px;}
.h12{height:37.227769px;}
.h14{height:41.881240px;}
.h22{height:42.020256px;}
.h21{height:42.020508px;}
.h2{height:48.023438px;}
.h24{height:60.029297px;}
.h6{height:65.148595px;}
.h16{height:67.232812px;}
.h20{height:72.034971px;}
.h1f{height:72.035100px;}
.h1d{height:72.035156px;}
.h15{height:81.332440px;}
.h5{height:91.659356px;}
.h1e{height:94.473037px;}
.h4{height:99.077616px;}
.h3{height:105.623437px;}
.h23{height:105.624038px;}
.h1{height:1785.750000px;}
.h0{height:1785.825000px;}
.w0{width:2525.670000px;}
.w1{width:2526.000000px;}
.x0{left:0.000000px;}
.x2{left:34.015800px;}
.xc{left:64.272300px;}
.xb{left:71.543550px;}
.x1d{left:73.355700px;}
.x1e{left:75.651750px;}
.x4f{left:85.039350px;}
.x17{left:98.704350px;}
.x6a{left:105.236250px;}
.x52{left:106.299300px;}
.xd{left:107.802150px;}
.x71{left:110.551200px;}
.x1f{left:115.292400px;}
.x2b{left:120.968550px;}
.xc4{left:124.724400px;}
.x20{left:131.578050px;}
.x73{left:135.000000px;}
.xbc{left:139.252050px;}
.xb1{left:146.094000px;}
.x79{left:148.818900px;}
.xb6{left:163.226850px;}
.x76{left:172.629900px;}
.xbd{left:175.393800px;}
.x2c{left:177.573750px;}
.x77{left:181.417350px;}
.x56{left:190.699500px;}
.xe{left:201.582000px;}
.x24{left:202.749750px;}
.x60{left:208.346550px;}
.xb2{left:217.215000px;}
.x1c{left:231.357300px;}
.x1b{left:233.062950px;}
.xc5{left:235.984200px;}
.xb7{left:238.631100px;}
.x25{left:240.574950px;}
.x2a{left:256.279500px;}
.x26{left:290.092650px;}
.xb4{left:292.976850px;}
.x19{left:306.711450px;}
.xf{left:322.726200px;}
.x78{left:335.905500px;}
.x6{left:350.078700px;}
.x16{left:352.512750px;}
.x21{left:360.390000px;}
.xc6{left:371.855250px;}
.xb3{left:375.242400px;}
.x13{left:382.788450px;}
.x31{left:404.623050px;}
.x12{left:410.811900px;}
.x6c{left:427.322850px;}
.xa2{left:431.362200px;}
.x5e{left:437.902650px;}
.xb8{left:464.477400px;}
.x9f{left:474.044250px;}
.xc7{left:497.642700px;}
.x32{left:499.360800px;}
.xc2{left:506.951550px;}
.xc1{left:522.807000px;}
.x63{left:537.192750px;}
.x18{left:540.951300px;}
.xb9{left:543.138750px;}
.x23{left:551.504850px;}
.x14{left:572.814750px;}
.x15{left:577.560450px;}
.x2e{left:613.668750px;}
.x64{left:635.715150px;}
.x30{left:637.762500px;}
.x2d{left:654.896700px;}
.x1a{left:660.798150px;}
.x10{left:673.046550px;}
.x27{left:680.157000px;}
.x2f{left:689.449200px;}
.x61{left:711.588600px;}
.x59{left:714.056100px;}
.x84{left:748.536750px;}
.x33{left:750.685050px;}
.xbb{left:760.570950px;}
.xa4{left:774.504750px;}
.x29{left:793.494000px;}
.x28{left:801.890850px;}
.xaf{left:807.050400px;}
.x11{left:822.154050px;}
.x5a{left:839.630850px;}
.xa{left:841.063800px;}
.x22{left:843.537600px;}
.xab{left:859.433250px;}
.x7b{left:872.259000px;}
.xa9{left:914.411700px;}
.x5d{left:918.375000px;}
.x58{left:921.075000px;}
.xa3{left:939.507450px;}
.xba{left:948.379350px;}
.xbf{left:949.606350px;}
.x55{left:963.944700px;}
.xad{left:966.536700px;}
.x5b{left:970.024500px;}
.x75{left:972.637800px;}
.x5f{left:1006.796850px;}
.x6b{left:1009.293300px;}
.xaa{left:1018.280850px;}
.x5{left:1036.251750px;}
.x5c{left:1046.560050px;}
.x85{left:1113.497400px;}
.x8a{left:1115.811000px;}
.x95{left:1117.674300px;}
.x6f{left:1121.488350px;}
.x8e{left:1130.125500px;}
.x7c{left:1143.779550px;}
.x87{left:1151.236800px;}
.x9b{left:1153.000500px;}
.x96{left:1160.219250px;}
.xb0{left:1162.509450px;}
.x94{left:1165.404750px;}
.x93{left:1171.609800px;}
.x9d{left:1182.572700px;}
.x89{left:1185.256350px;}
.x9a{left:1190.266050px;}
.x98{left:1192.270050px;}
.x4b{left:1193.347800px;}
.x92{left:1196.670450px;}
.x4c{left:1204.035900px;}
.x8d{left:1216.797300px;}
.x72{left:1223.651400px;}
.x88{left:1225.932150px;}
.x8f{left:1240.539600px;}
.x80{left:1251.496050px;}
.x62{left:1257.224250px;}
.xc0{left:1260.708600px;}
.xa5{left:1262.834700px;}
.x9c{left:1282.223100px;}
.x7f{left:1294.724400px;}
.x91{left:1298.635200px;}
.x8c{left:1315.516050px;}
.x74{left:1317.047250px;}
.x7a{left:1326.614250px;}
.x97{left:1337.793450px;}
.x99{left:1339.861800px;}
.x86{left:1343.453550px;}
.x9e{left:1348.621650px;}
.x90{left:1351.563000px;}
.x8b{left:1362.156750px;}
.x9{left:1373.303250px;}
.x66{left:1377.372000px;}
.x47{left:1408.155000px;}
.x7d{left:1411.653600px;}
.xac{left:1414.315200px;}
.x46{left:1417.021200px;}
.x45{left:1418.645550px;}
.x4a{left:1468.848600px;}
.x68{left:1487.409450px;}
.xa6{left:1491.916650px;}
.xb5{left:1500.535800px;}
.x69{left:1503.066450px;}
.xa8{left:1508.281950px;}
.x70{left:1511.574900px;}
.xae{left:1521.418650px;}
.x42{left:1547.499600px;}
.x44{left:1552.421400px;}
.x43{left:1556.587500px;}
.xa1{left:1561.535550px;}
.x83{left:1568.976450px;}
.xa7{left:1573.162650px;}
.x35{left:1599.423450px;}
.x36{left:1600.669800px;}
.x37{left:1604.512350px;}
.x81{left:1630.322700px;}
.x4d{left:1637.251800px;}
.x39{left:1645.166400px;}
.x38{left:1652.779500px;}
.x41{left:1667.702850px;}
.x7e{left:1671.023550px;}
.x40{left:1673.275050px;}
.x3e{left:1677.873750px;}
.x3c{left:1680.677550px;}
.x3f{left:1686.979200px;}
.x3b{left:1688.434800px;}
.x65{left:1693.700850px;}
.x3d{left:1697.561250px;}
.x6e{left:1719.212550px;}
.x1{left:1733.675100px;}
.x57{left:1738.630050px;}
.x8{left:1748.777700px;}
.x7{left:1750.705500px;}
.x3a{left:1783.005000px;}
.xa0{left:1801.240200px;}
.xbe{left:1908.070800px;}
.x67{left:1913.385900px;}
.x82{left:1934.896800px;}
.xc3{left:1984.606200px;}
.x48{left:2021.665650px;}
.x54{left:2022.783150px;}
.x49{left:2024.568450px;}
.x4{left:2070.708750px;}
.x53{left:2098.323300px;}
.x50{left:2149.054800px;}
.x51{left:2150.755800px;}
.x4e{left:2187.637950px;}
.x34{left:2196.141750px;}
.x6d{left:2273.385900px;}
.x3{left:2446.632000px;}
@media print{
.v8{vertical-align:-45.354133pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:4.077867pt;}
.v4{vertical-align:13.365867pt;}
.v5{vertical-align:17.443733pt;}
.v1{vertical-align:20.110400pt;}
.v2{vertical-align:31.089600pt;}
.v6{vertical-align:35.067733pt;}
.v7{vertical-align:41.288533pt;}
.v3{vertical-align:51.200000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013867pt;}
.lse{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.600000pt;}
.ls11{letter-spacing:1.919995pt;}
.ls10{letter-spacing:1.919998pt;}
.lsd{letter-spacing:1.920000pt;}
.ls3{letter-spacing:3.720924pt;}
.ls8{letter-spacing:3.720935pt;}
.ls4{letter-spacing:3.720943pt;}
.ls5{letter-spacing:3.720950pt;}
.ls6{letter-spacing:3.720955pt;}
.lsc{letter-spacing:3.720956pt;}
.ls9{letter-spacing:3.720962pt;}
.lsa{letter-spacing:3.720995pt;}
.ls7{letter-spacing:3.720998pt;}
.lsb{letter-spacing:3.721005pt;}
.ls14{letter-spacing:11.680000pt;}
.ls16{letter-spacing:19.200000pt;}
.ls15{letter-spacing:32.000000pt;}
.ls13{letter-spacing:37.066667pt;}
.ls1{letter-spacing:663.012241pt;}
.lsf{letter-spacing:3045.855467pt;}
.ws62{word-spacing:-37.066667pt;}
.ws1a{word-spacing:-26.282667pt;}
.ws98{word-spacing:-19.200000pt;}
.ws5a{word-spacing:-16.298667pt;}
.ws1b{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.018667pt;}
.ws35{word-spacing:-14.592000pt;}
.ws26{word-spacing:-13.141333pt;}
.ws5d{word-spacing:-11.946667pt;}
.ws2{word-spacing:-8.755200pt;}
.ws38{word-spacing:-6.784000pt;}
.ws3e{word-spacing:-6.101333pt;}
.ws83{word-spacing:-5.888000pt;}
.ws52{word-spacing:-5.418667pt;}
.ws6d{word-spacing:-5.066667pt;}
.ws1f{word-spacing:-4.394667pt;}
.ws8f{word-spacing:-2.602667pt;}
.ws85{word-spacing:-2.517333pt;}
.ws4{word-spacing:-2.474667pt;}
.ws91{word-spacing:-2.218667pt;}
.ws25{word-spacing:-1.920000pt;}
.ws8d{word-spacing:-1.877333pt;}
.ws48{word-spacing:-1.834667pt;}
.ws27{word-spacing:-1.749333pt;}
.ws8c{word-spacing:-1.621333pt;}
.ws5f{word-spacing:-1.600000pt;}
.ws61{word-spacing:-1.578667pt;}
.ws8b{word-spacing:-1.536000pt;}
.ws60{word-spacing:-1.408000pt;}
.ws34{word-spacing:-1.381333pt;}
.ws88{word-spacing:-1.365333pt;}
.ws1c{word-spacing:-1.280000pt;}
.ws6{word-spacing:-1.024000pt;}
.ws6b{word-spacing:-0.981333pt;}
.ws43{word-spacing:-0.810667pt;}
.ws6a{word-spacing:-0.682667pt;}
.ws41{word-spacing:-0.640000pt;}
.ws87{word-spacing:-0.341333pt;}
.ws86{word-spacing:-0.298667pt;}
.ws0{word-spacing:0.000000pt;}
.ws22{word-spacing:0.085333pt;}
.ws19{word-spacing:0.512000pt;}
.ws7{word-spacing:0.768000pt;}
.ws5{word-spacing:0.810667pt;}
.wsd{word-spacing:1.109333pt;}
.ws7f{word-spacing:1.280000pt;}
.ws9a{word-spacing:1.322667pt;}
.ws3a{word-spacing:1.536000pt;}
.ws18{word-spacing:1.621333pt;}
.ws37{word-spacing:1.664000pt;}
.ws46{word-spacing:1.749333pt;}
.ws47{word-spacing:1.792000pt;}
.ws45{word-spacing:1.877333pt;}
.ws44{word-spacing:1.920000pt;}
.ws39{word-spacing:2.005333pt;}
.ws2a{word-spacing:2.048000pt;}
.ws84{word-spacing:2.090667pt;}
.ws17{word-spacing:2.261333pt;}
.ws3f{word-spacing:2.346667pt;}
.ws28{word-spacing:2.602667pt;}
.ws2b{word-spacing:2.730667pt;}
.wsa{word-spacing:3.072000pt;}
.ws9{word-spacing:3.157333pt;}
.ws3c{word-spacing:3.200000pt;}
.ws8e{word-spacing:3.370667pt;}
.ws29{word-spacing:3.498667pt;}
.ws63{word-spacing:3.541333pt;}
.ws65{word-spacing:3.584000pt;}
.ws6f{word-spacing:3.968000pt;}
.ws31{word-spacing:4.106667pt;}
.ws1d{word-spacing:4.138667pt;}
.ws23{word-spacing:4.480000pt;}
.ws2e{word-spacing:4.816000pt;}
.ws8a{word-spacing:4.992000pt;}
.ws5c{word-spacing:5.013333pt;}
.ws4a{word-spacing:5.504000pt;}
.ws49{word-spacing:5.632000pt;}
.ws6e{word-spacing:6.133333pt;}
.ws42{word-spacing:6.272000pt;}
.ws21{word-spacing:6.570667pt;}
.ws9b{word-spacing:6.741333pt;}
.ws7e{word-spacing:6.826667pt;}
.ws2d{word-spacing:7.018667pt;}
.ws11{word-spacing:7.040000pt;}
.ws78{word-spacing:7.082667pt;}
.ws10{word-spacing:7.253333pt;}
.ws3d{word-spacing:7.296000pt;}
.ws95{word-spacing:8.320000pt;}
.ws7c{word-spacing:8.405333pt;}
.ws80{word-spacing:9.013333pt;}
.ws92{word-spacing:9.344000pt;}
.ws1e{word-spacing:9.898667pt;}
.ws69{word-spacing:10.197333pt;}
.ws50{word-spacing:10.666667pt;}
.ws6c{word-spacing:11.434667pt;}
.wsf{word-spacing:11.690667pt;}
.ws89{word-spacing:12.501333pt;}
.ws76{word-spacing:12.714667pt;}
.ws3b{word-spacing:12.842667pt;}
.ws81{word-spacing:13.781333pt;}
.ws2c{word-spacing:14.074667pt;}
.ws16{word-spacing:14.122667pt;}
.ws82{word-spacing:14.208000pt;}
.ws40{word-spacing:14.336000pt;}
.ws15{word-spacing:14.549333pt;}
.ws93{word-spacing:14.890667pt;}
.ws75{word-spacing:15.744000pt;}
.ws90{word-spacing:15.872000pt;}
.wsb{word-spacing:16.426667pt;}
.ws77{word-spacing:16.725333pt;}
.ws71{word-spacing:16.853333pt;}
.wsc{word-spacing:16.896000pt;}
.ws7d{word-spacing:17.280000pt;}
.ws72{word-spacing:17.322667pt;}
.ws20{word-spacing:18.133333pt;}
.ws14{word-spacing:18.645333pt;}
.ws58{word-spacing:19.626667pt;}
.ws24{word-spacing:19.712000pt;}
.ws8{word-spacing:20.778667pt;}
.ws79{word-spacing:21.013333pt;}
.ws74{word-spacing:21.077333pt;}
.ws54{word-spacing:21.504000pt;}
.ws53{word-spacing:23.466667pt;}
.ws7a{word-spacing:24.618667pt;}
.ws68{word-spacing:24.960000pt;}
.wse{word-spacing:25.429333pt;}
.ws9c{word-spacing:25.856000pt;}
.ws51{word-spacing:28.160000pt;}
.ws12{word-spacing:30.250667pt;}
.ws33{word-spacing:30.874667pt;}
.ws70{word-spacing:31.189333pt;}
.ws4d{word-spacing:33.450667pt;}
.ws55{word-spacing:36.693333pt;}
.ws5b{word-spacing:39.786667pt;}
.ws73{word-spacing:41.002667pt;}
.ws67{word-spacing:41.333333pt;}
.ws64{word-spacing:41.856000pt;}
.ws7b{word-spacing:42.368000pt;}
.ws57{word-spacing:42.624000pt;}
.ws94{word-spacing:48.128000pt;}
.ws5e{word-spacing:51.413333pt;}
.ws9d{word-spacing:52.992000pt;}
.ws4f{word-spacing:53.120000pt;}
.ws4c{word-spacing:53.418667pt;}
.ws13{word-spacing:54.528000pt;}
.ws56{word-spacing:56.789333pt;}
.ws66{word-spacing:60.245333pt;}
.ws2f{word-spacing:68.618667pt;}
.ws4b{word-spacing:72.746667pt;}
.ws36{word-spacing:77.056000pt;}
.ws32{word-spacing:94.528000pt;}
.ws30{word-spacing:98.373333pt;}
.ws96{word-spacing:102.101333pt;}
.ws4e{word-spacing:105.130667pt;}
.ws99{word-spacing:130.005333pt;}
.ws97{word-spacing:183.936000pt;}
.ws59{word-spacing:2382.378133pt;}
.ws1{word-spacing:2402.722133pt;}
._29{margin-left:-6687.475733pt;}
._16{margin-left:-4021.150933pt;}
._52{margin-left:-3078.461867pt;}
._1c{margin-left:-49.369600pt;}
._36{margin-left:-37.040000pt;}
._3d{margin-left:-31.813333pt;}
._3c{margin-left:-30.405333pt;}
._a{margin-left:-19.398400pt;}
._38{margin-left:-11.808000pt;}
._37{margin-left:-10.080000pt;}
._1e{margin-left:-8.230400pt;}
._48{margin-left:-6.715733pt;}
._7{margin-left:-5.329067pt;}
._2{margin-left:-4.243200pt;}
._5{margin-left:-2.820267pt;}
._0{margin-left:-1.318400pt;}
._f{width:1.282133pt;}
._13{width:2.427733pt;}
._40{width:3.584000pt;}
._45{width:4.599467pt;}
._49{width:5.521067pt;}
._c{width:6.777600pt;}
._47{width:8.900267pt;}
._46{width:9.966933pt;}
._8{width:16.855467pt;}
._41{width:18.688000pt;}
._54{width:37.888000pt;}
._3e{width:42.400000pt;}
._42{width:45.939200pt;}
._25{width:46.937600pt;}
._3b{width:51.413333pt;}
._39{width:56.480000pt;}
._33{width:63.360000pt;}
._1a{width:65.194667pt;}
._18{width:66.688000pt;}
._3a{width:69.050667pt;}
._32{width:72.000000pt;}
._1b{width:73.258667pt;}
._17{width:79.530667pt;}
._55{width:80.554667pt;}
._19{width:85.632000pt;}
._2c{width:91.584000pt;}
._2e{width:92.480000pt;}
._30{width:94.912000pt;}
._44{width:103.296000pt;}
._4c{width:104.571733pt;}
._31{width:111.786667pt;}
._34{width:113.317333pt;}
._43{width:127.104000pt;}
._b{width:168.198400pt;}
._53{width:179.308800pt;}
._56{width:186.593600pt;}
._35{width:206.458667pt;}
._2d{width:375.700267pt;}
._4a{width:463.360000pt;}
._e{width:539.329067pt;}
._2b{width:621.882667pt;}
._d{width:726.278400pt;}
._10{width:802.557333pt;}
._4{width:854.932267pt;}
._4d{width:1140.644267pt;}
._4e{width:1338.400000pt;}
._1{width:1339.333867pt;}
._11{width:1395.547200pt;}
._50{width:1406.430933pt;}
._2f{width:2440.092267pt;}
._28{width:2770.197867pt;}
._15{width:3063.864000pt;}
._3{width:3575.942933pt;}
._1d{width:3614.306667pt;}
._20{width:3646.692267pt;}
._21{width:3649.489067pt;}
._3f{width:3739.504533pt;}
._12{width:3749.020267pt;}
._51{width:3768.160533pt;}
._14{width:3790.090667pt;}
._4b{width:3796.762133pt;}
._2a{width:3826.931733pt;}
._22{width:3891.837333pt;}
._23{width:3896.658133pt;}
._26{width:3949.322133pt;}
._24{width:3966.475733pt;}
._1f{width:3968.371733pt;}
._27{width:4047.540800pt;}
._9{width:4077.856000pt;}
._4f{width:4093.004267pt;}
._6{width:4183.713067pt;}
.fs5{font-size:24.806161pt;}
.fs4{font-size:24.806217pt;}
.fsa{font-size:24.806235pt;}
.fs6{font-size:24.806286pt;}
.fs7{font-size:24.806336pt;}
.fs8{font-size:24.806366pt;}
.fse{font-size:24.806373pt;}
.fsb{font-size:24.806416pt;}
.fs10{font-size:24.806565pt;}
.fsc{font-size:24.806630pt;}
.fs9{font-size:24.806652pt;}
.fsd{font-size:24.806700pt;}
.fs15{font-size:25.599867pt;}
.fs13{font-size:25.600000pt;}
.fs17{font-size:25.600008pt;}
.fs16{font-size:25.600109pt;}
.fs14{font-size:25.600165pt;}
.fsf{font-size:33.075200pt;}
.fs11{font-size:37.209600pt;}
.fs1b{font-size:37.333110pt;}
.fs1a{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1c{font-size:53.333333pt;}
.fs3{font-size:57.881600pt;}
.fs12{font-size:59.733333pt;}
.fs19{font-size:63.999836pt;}
.fs18{font-size:63.999950pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:38.655733pt;}
.y1{bottom:45.055733pt;}
.y2{bottom:51.455733pt;}
.y8d{bottom:153.015467pt;}
.y2e{bottom:163.469867pt;}
.y8c{bottom:165.815333pt;}
.y8b{bottom:178.615333pt;}
.y1b8{bottom:178.763733pt;}
.y2d{bottom:183.314933pt;}
.y11f{bottom:183.793333pt;}
.y11e{bottom:196.593333pt;}
.y2c{bottom:203.160133pt;}
.ybe{bottom:205.664667pt;}
.y11d{bottom:209.393333pt;}
.y30{bottom:212.347067pt;}
.y2f{bottom:216.878267pt;}
.ybd{bottom:218.464667pt;}
.y2b{bottom:223.005200pt;}
.y8a{bottom:227.459467pt;}
.y11c{bottom:234.993333pt;}
.y89{bottom:240.259467pt;}
.ye7{bottom:242.664000pt;}
.y2a{bottom:242.850267pt;}
.y126{bottom:243.536667pt;}
.ybc{bottom:244.064667pt;}
.y88{bottom:253.059467pt;}
.y1bf{bottom:253.487867pt;}
.y125{bottom:256.336667pt;}
.y186{bottom:261.154933pt;}
.y29{bottom:262.695467pt;}
.y9b{bottom:263.392933pt;}
.y12f{bottom:264.268267pt;}
.y87{bottom:265.859467pt;}
.y1be{bottom:266.287867pt;}
.ye6{bottom:268.264000pt;}
.ybb{bottom:269.664667pt;}
.y1bd{bottom:279.087867pt;}
.ye5{bottom:281.064000pt;}
.y42{bottom:281.835733pt;}
.yba{bottom:282.464667pt;}
.y28{bottom:282.540533pt;}
.yae{bottom:284.775333pt;}
.yb9{bottom:295.264667pt;}
.yad{bottom:297.575333pt;}
.y27{bottom:302.385600pt;}
.ye4{bottom:306.664000pt;}
.y26{bottom:312.308267pt;}
.y90{bottom:313.377333pt;}
.y91{bottom:318.622800pt;}
.yd{bottom:319.529600pt;}
.yb8{bottom:320.864667pt;}
.y1bb{bottom:324.442133pt;}
.y25{bottom:332.153333pt;}
.ye3{bottom:332.264000pt;}
.yb7{bottom:333.664667pt;}
.y1d2{bottom:343.566533pt;}
.ye2{bottom:345.063867pt;}
.yb6{bottom:346.464667pt;}
.y24{bottom:351.998400pt;}
.y1f5{bottom:352.788667pt;}
.y1d1{bottom:356.366533pt;}
.y1d0{bottom:369.166533pt;}
.y23{bottom:371.843600pt;}
.yb5{bottom:372.064667pt;}
.y41{bottom:372.480000pt;}
.y124{bottom:382.241867pt;}
.yb4{bottom:384.864667pt;}
.y187{bottom:385.859467pt;}
.y22{bottom:391.688667pt;}
.y7{bottom:394.319200pt;}
.y123{bottom:395.041867pt;}
.y159{bottom:402.000000pt;}
.y6{bottom:407.390000pt;}
.y8{bottom:410.573467pt;}
.y21{bottom:411.533867pt;}
.y1b9{bottom:413.261067pt;}
.yd4{bottom:413.538800pt;}
.y142{bottom:414.800000pt;}
.y1de{bottom:415.491067pt;}
.y40{bottom:422.566533pt;}
.yb3{bottom:423.264667pt;}
.y141{bottom:427.600000pt;}
.y1dd{bottom:428.290933pt;}
.y1d6{bottom:430.609067pt;}
.y20{bottom:431.378933pt;}
.y158{bottom:440.400000pt;}
.y1dc{bottom:441.090933pt;}
.y1bc{bottom:443.024800pt;}
.y1d5{bottom:443.409067pt;}
.y122{bottom:444.719067pt;}
.y1f{bottom:451.224000pt;}
.y9a{bottom:452.369200pt;}
.y140{bottom:453.200000pt;}
.y1db{bottom:453.890933pt;}
.y1d4{bottom:456.209067pt;}
.y121{bottom:457.519067pt;}
.y1b7{bottom:460.933467pt;}
.y14{bottom:460.963067pt;}
.y13f{bottom:466.000000pt;}
.y1d3{bottom:469.009067pt;}
.y1e{bottom:471.069200pt;}
.y1b6{bottom:473.733467pt;}
.yeb{bottom:480.950533pt;}
.yb{bottom:483.185600pt;}
.y1c7{bottom:486.445333pt;}
.y1d{bottom:490.914267pt;}
.y13e{bottom:491.600000pt;}
.yea{bottom:493.750533pt;}
.y3c{bottom:496.582267pt;}
.y1c6{bottom:499.245333pt;}
.y139{bottom:507.600000pt;}
.y1c{bottom:510.759333pt;}
.ye9{bottom:519.350533pt;}
.y1b5{bottom:524.757067pt;}
.y185{bottom:525.146267pt;}
.ye{bottom:527.711467pt;}
.y1b{bottom:530.604533pt;}
.ye8{bottom:532.150533pt;}
.yac{bottom:533.814133pt;}
.yab{bottom:546.614133pt;}
.y1a{bottom:550.449600pt;}
.y18d{bottom:552.848667pt;}
.y1b4{bottom:556.883067pt;}
.y120{bottom:557.750533pt;}
.y195{bottom:558.571200pt;}
.yaa{bottom:559.414133pt;}
.y133{bottom:562.316133pt;}
.y18c{bottom:565.648667pt;}
.y184{bottom:569.856533pt;}
.y194{bottom:571.371200pt;}
.y18b{bottom:578.448667pt;}
.y9{bottom:578.844800pt;}
.y183{bottom:582.656533pt;}
.y1b3{bottom:582.823200pt;}
.y15d{bottom:589.628267pt;}
.y1f2{bottom:594.678400pt;}
.y182{bottom:595.456533pt;}
.y1b2{bottom:595.623200pt;}
.y5{bottom:597.700267pt;}
.y3f{bottom:601.958533pt;}
.y15c{bottom:602.428267pt;}
.y4{bottom:615.064667pt;}
.y15b{bottom:615.228267pt;}
.y1b1{bottom:621.563333pt;}
.yd1{bottom:632.297200pt;}
.y1b0{bottom:634.363333pt;}
.y15a{bottom:640.828267pt;}
.yd3{bottom:642.980667pt;}
.yd0{bottom:645.097200pt;}
.y18a{bottom:646.602800pt;}
.yd2{bottom:655.780667pt;}
.y19e{bottom:656.269200pt;}
.y181{bottom:659.402800pt;}
.y19d{bottom:669.069200pt;}
.ycf{bottom:670.697200pt;}
.y1e6{bottom:674.161867pt;}
.y67{bottom:676.564000pt;}
.y3e{bottom:676.944000pt;}
.y66{bottom:677.897600pt;}
.y19c{bottom:681.869200pt;}
.yce{bottom:683.497200pt;}
.y1e5{bottom:686.961867pt;}
.y19b{bottom:694.669200pt;}
.y18f{bottom:695.264267pt;}
.y97{bottom:698.038533pt;}
.y83{bottom:698.650000pt;}
.y3b{bottom:699.052933pt;}
.y18e{bottom:708.064267pt;}
.y12e{bottom:708.535333pt;}
.y3d{bottom:709.802800pt;}
.y99{bottom:710.636933pt;}
.y82{bottom:711.450133pt;}
.yfc{bottom:716.103333pt;}
.y12d{bottom:721.335333pt;}
.y81{bottom:724.250133pt;}
.yfb{bottom:728.903333pt;}
.y180{bottom:734.319333pt;}
.y80{bottom:737.050000pt;}
.y43{bottom:738.797600pt;}
.y17f{bottom:747.119333pt;}
.y7f{bottom:749.850133pt;}
.yf{bottom:754.208533pt;}
.y3a{bottom:758.284267pt;}
.y1ed{bottom:759.386400pt;}
.y7e{bottom:762.650000pt;}
.y1f1{bottom:765.055600pt;}
.yd6{bottom:767.075200pt;}
.y11b{bottom:774.969600pt;}
.y7d{bottom:775.450133pt;}
.y189{bottom:779.358667pt;}
.yd5{bottom:779.875200pt;}
.yfa{bottom:780.103333pt;}
.y1e7{bottom:783.953333pt;}
.y11a{bottom:787.769600pt;}
.y7c{bottom:788.250133pt;}
.y188{bottom:792.158667pt;}
.yf9{bottom:792.903333pt;}
.y1af{bottom:799.077867pt;}
.y119{bottom:800.569600pt;}
.y7b{bottom:801.050000pt;}
.y1ae{bottom:811.877867pt;}
.y9f{bottom:812.685200pt;}
.y118{bottom:813.369600pt;}
.y39{bottom:814.349867pt;}
.y104{bottom:824.724400pt;}
.y9e{bottom:831.885200pt;}
.y13{bottom:834.979600pt;}
.y65{bottom:837.323600pt;}
.y16f{bottom:837.513067pt;}
.y103{bottom:837.524533pt;}
.y117{bottom:838.969600pt;}
.y1f3{bottom:840.347600pt;}
.y36{bottom:841.358133pt;}
.y10{bottom:841.570133pt;}
.y64{bottom:842.870133pt;}
.yb2{bottom:843.626667pt;}
.y1ac{bottom:844.386933pt;}
.y102{bottom:850.324400pt;}
.y9d{bottom:851.085200pt;}
.y17e{bottom:853.059467pt;}
.y11{bottom:854.740667pt;}
.yb1{bottom:856.426667pt;}
.y138{bottom:857.434533pt;}
.y8f{bottom:863.428800pt;}
.y17d{bottom:865.859467pt;}
.y1cf{bottom:866.174400pt;}
.y16e{bottom:867.232667pt;}
.y37{bottom:868.137600pt;}
.y9c{bottom:870.285200pt;}
.y137{bottom:873.434533pt;}
.ydb{bottom:873.758667pt;}
.y14b{bottom:875.286533pt;}
.y8e{bottom:876.228800pt;}
.y153{bottom:878.486533pt;}
.y12{bottom:879.567200pt;}
.y16d{bottom:880.032667pt;}
.ya{bottom:880.041067pt;}
.y5d{bottom:883.041867pt;}
.y63{bottom:883.296000pt;}
.y1aa{bottom:883.784667pt;}
.yda{bottom:886.558667pt;}
.y14a{bottom:888.086533pt;}
.y136{bottom:889.434533pt;}
.y17{bottom:889.963200pt;}
.y5c{bottom:890.721867pt;}
.y152{bottom:891.286533pt;}
.y116{bottom:894.771200pt;}
.yb0{bottom:894.826667pt;}
.yf8{bottom:896.244533pt;}
.y5b{bottom:898.401867pt;}
.y16{bottom:899.885733pt;}
.y149{bottom:900.886533pt;}
.y151{bottom:904.086533pt;}
.y115{bottom:907.571200pt;}
.y19{bottom:908.429467pt;}
.yf7{bottom:909.044533pt;}
.y5a{bottom:910.180800pt;}
.yd9{bottom:912.158667pt;}
.y14c{bottom:913.686533pt;}
.y35{bottom:916.866667pt;}
.y18{bottom:916.981333pt;}
.y96{bottom:917.393467pt;}
.y59{bottom:917.860800pt;}
.y114{bottom:920.371200pt;}
.y1a9{bottom:924.127200pt;}
.y60{bottom:924.586133pt;}
.y148{bottom:926.486533pt;}
.y16c{bottom:927.705200pt;}
.y1e2{bottom:929.506667pt;}
.y150{bottom:929.686533pt;}
.y38{bottom:930.032267pt;}
.y5f{bottom:932.266133pt;}
.yf6{bottom:934.644533pt;}
.y147{bottom:939.286533pt;}
.y5e{bottom:939.946133pt;}
.y16b{bottom:940.505067pt;}
.y1e1{bottom:942.306667pt;}
.y14f{bottom:942.486533pt;}
.y47{bottom:943.525733pt;}
.y98{bottom:944.967733pt;}
.y113{bottom:945.971200pt;}
.yf5{bottom:947.444533pt;}
.y46{bottom:951.205733pt;}
.y146{bottom:952.086533pt;}
.y1e0{bottom:955.106667pt;}
.y14e{bottom:955.286533pt;}
.y45{bottom:958.885733pt;}
.y19a{bottom:966.155467pt;}
.y1a8{bottom:966.332000pt;}
.y1df{bottom:967.906667pt;}
.y14d{bottom:968.086533pt;}
.y157{bottom:971.286533pt;}
.y17c{bottom:972.631067pt;}
.y145{bottom:977.686533pt;}
.y199{bottom:978.955600pt;}
.y16a{bottom:982.080000pt;}
.y156{bottom:984.086533pt;}
.y34{bottom:985.304400pt;}
.yf4{bottom:985.844533pt;}
.y198{bottom:991.755600pt;}
.y112{bottom:992.575467pt;}
.y144{bottom:993.686533pt;}
.y58{bottom:995.844533pt;}
.yf3{bottom:998.644533pt;}
.yc{bottom:999.217333pt;}
.y57{bottom:1003.524533pt;}
.y111{bottom:1005.375467pt;}
.y165{bottom:1007.075333pt;}
.y143{bottom:1009.686533pt;}
.y53{bottom:1009.870667pt;}
.y1a1{bottom:1010.854800pt;}
.y56{bottom:1011.204533pt;}
.ycd{bottom:1016.021333pt;}
.y197{bottom:1017.355600pt;}
.y52{bottom:1017.550667pt;}
.y33{bottom:1017.629200pt;}
.y110{bottom:1018.175467pt;}
.y55{bottom:1018.884533pt;}
.y164{bottom:1019.875200pt;}
.y1a0{bottom:1023.654667pt;}
.y62{bottom:1023.865600pt;}
.y69{bottom:1025.184533pt;}
.y51{bottom:1025.230667pt;}
.y54{bottom:1026.564533pt;}
.ycc{bottom:1027.221333pt;}
.y68{bottom:1027.684933pt;}
.y61{bottom:1031.152000pt;}
.y50{bottom:1032.910667pt;}
.ya9{bottom:1034.043067pt;}
.y17b{bottom:1035.481733pt;}
.y1e4{bottom:1040.461067pt;}
.y4f{bottom:1040.590667pt;}
.y10f{bottom:1043.775467pt;}
.ya8{bottom:1045.243067pt;}
.y44{bottom:1045.417200pt;}
.y4e{bottom:1048.270667pt;}
.y17a{bottom:1048.281733pt;}
.y1da{bottom:1048.876800pt;}
.y132{bottom:1051.056267pt;}
.y1e3{bottom:1053.261067pt;}
.y4d{bottom:1055.950667pt;}
.y95{bottom:1056.972933pt;}
.y15f{bottom:1058.098933pt;}
.y179{bottom:1061.081733pt;}
.y1d9{bottom:1061.676800pt;}
.y4c{bottom:1063.630667pt;}
.y19f{bottom:1069.954000pt;}
.y15e{bottom:1070.898800pt;}
.y4b{bottom:1071.310667pt;}
.y178{bottom:1073.881733pt;}
.y1d8{bottom:1074.476800pt;}
.y1c5{bottom:1075.921867pt;}
.ycb{bottom:1078.367200pt;}
.y4a{bottom:1078.990667pt;}
.yf2{bottom:1085.218667pt;}
.y1d7{bottom:1087.276800pt;}
.y10e{bottom:1093.053200pt;}
.yf1{bottom:1098.018667pt;}
.y196{bottom:1099.496000pt;}
.y101{bottom:1101.134267pt;}
.y1c3{bottom:1101.781333pt;}
.y15{bottom:1102.783333pt;}
.y1f4{bottom:1103.024800pt;}
.y10d{bottom:1105.853067pt;}
.y191{bottom:1109.340400pt;}
.y100{bottom:1113.934267pt;}
.y10c{bottom:1118.653200pt;}
.yff{bottom:1126.734267pt;}
.yca{bottom:1128.629333pt;}
.y7a{bottom:1128.923467pt;}
.y10b{bottom:1131.453067pt;}
.yf0{bottom:1136.418667pt;}
.y193{bottom:1137.575333pt;}
.yc9{bottom:1139.829200pt;}
.y79{bottom:1141.723467pt;}
.y177{bottom:1146.917733pt;}
.yd7{bottom:1148.379200pt;}
.yef{bottom:1149.218667pt;}
.yc8{bottom:1151.029333pt;}
.y78{bottom:1154.523467pt;}
.y10a{bottom:1157.053200pt;}
.y176{bottom:1159.717733pt;}
.yaf{bottom:1160.027867pt;}
.y86{bottom:1163.948133pt;}
.y77{bottom:1167.323467pt;}
.y32{bottom:1174.017200pt;}
.yee{bottom:1174.818667pt;}
.y76{bottom:1180.123467pt;}
.y75{bottom:1192.923467pt;}
.yed{bottom:1200.418667pt;}
.y74{bottom:1205.723467pt;}
.yec{bottom:1213.218667pt;}
.yc7{bottom:1222.732800pt;}
.y175{bottom:1225.583733pt;}
.ya7{bottom:1229.852267pt;}
.yc6{bottom:1233.932800pt;}
.y174{bottom:1238.383733pt;}
.ya6{bottom:1241.052267pt;}
.y31{bottom:1244.860933pt;}
.yc5{bottom:1245.132667pt;}
.yc4{bottom:1256.332800pt;}
.y1ba{bottom:1262.543200pt;}
.y1ce{bottom:1276.101867pt;}
.y173{bottom:1277.311467pt;}
.yc3{bottom:1278.732800pt;}
.y109{bottom:1280.829467pt;}
.y1cd{bottom:1288.902000pt;}
.yc2{bottom:1289.932800pt;}
.y172{bottom:1290.111467pt;}
.y108{bottom:1293.629467pt;}
.y1fa{bottom:1295.264267pt;}
.y192{bottom:1299.650000pt;}
.yc1{bottom:1301.132667pt;}
.y1cc{bottom:1301.701867pt;}
.y107{bottom:1306.429467pt;}
.y1f9{bottom:1308.064267pt;}
.yc0{bottom:1312.332800pt;}
.y1cb{bottom:1314.502000pt;}
.y106{bottom:1319.229467pt;}
.y1ad{bottom:1325.955333pt;}
.y49{bottom:1326.890800pt;}
.y1ca{bottom:1327.301867pt;}
.y1f6{bottom:1328.205200pt;}
.ye1{bottom:1334.168267pt;}
.y48{bottom:1334.570800pt;}
.ybf{bottom:1334.732800pt;}
.y1fd{bottom:1338.010667pt;}
.y171{bottom:1338.728800pt;}
.y105{bottom:1344.829467pt;}
.y1fc{bottom:1350.810667pt;}
.y1ab{bottom:1351.467067pt;}
.y170{bottom:1351.528667pt;}
.y13d{bottom:1352.960533pt;}
.y73{bottom:1358.776667pt;}
.yfe{bottom:1358.918667pt;}
.ye0{bottom:1359.768267pt;}
.y1fb{bottom:1363.610667pt;}
.y155{bottom:1365.760533pt;}
.y1c9{bottom:1367.075200pt;}
.y72{bottom:1371.576667pt;}
.yfd{bottom:1371.718533pt;}
.y1f8{bottom:1376.410667pt;}
.y169{bottom:1376.524267pt;}
.y13c{bottom:1378.560533pt;}
.y1c8{bottom:1379.875200pt;}
.y71{bottom:1384.376667pt;}
.ydf{bottom:1385.368133pt;}
.y168{bottom:1389.324267pt;}
.y1a6{bottom:1390.268933pt;}
.y154{bottom:1391.360533pt;}
.y1c1{bottom:1391.860000pt;}
.ya5{bottom:1403.274133pt;}
.ydd{bottom:1403.925600pt;}
.y13b{bottom:1404.160533pt;}
.y1f7{bottom:1406.646933pt;}
.y1ec{bottom:1409.078400pt;}
.y70{bottom:1409.976667pt;}
.yde{bottom:1410.968267pt;}
.y1a5{bottom:1412.001333pt;}
.y1e8{bottom:1412.647467pt;}
.y167{bottom:1415.264267pt;}
.ydc{bottom:1416.725600pt;}
.y13a{bottom:1416.960667pt;}
.y6b{bottom:1420.505600pt;}
.y1eb{bottom:1421.878400pt;}
.y6f{bottom:1422.776667pt;}
.y135{bottom:1426.560533pt;}
.y166{bottom:1428.064267pt;}
.ya4{bottom:1428.874133pt;}
.y1ea{bottom:1434.678400pt;}
.y6e{bottom:1435.576667pt;}
.y6a{bottom:1438.425467pt;}
.y1a7{bottom:1440.347600pt;}
.ya3{bottom:1441.674133pt;}
.y129{bottom:1441.805200pt;}
.y134{bottom:1442.560533pt;}
.y1c4{bottom:1443.480800pt;}
.y94{bottom:1444.210800pt;}
.y85{bottom:1447.490400pt;}
.y161{bottom:1449.280133pt;}
.y84{bottom:1449.968267pt;}
.y1f0{bottom:1451.040000pt;}
.y1a4{bottom:1451.169733pt;}
.y128{bottom:1454.605333pt;}
.y93{bottom:1457.010800pt;}
.y1e9{bottom:1460.488800pt;}
.y6d{bottom:1461.176533pt;}
.y160{bottom:1462.080133pt;}
.y1a3{bottom:1463.969733pt;}
.ya2{bottom:1467.274133pt;}
.y92{bottom:1469.810667pt;}
.y1ee{bottom:1471.230133pt;}
.y130{bottom:1475.308400pt;}
.y1c0{bottom:1478.232800pt;}
.ya1{bottom:1480.074000pt;}
.y1ef{bottom:1480.679067pt;}
.y163{bottom:1482.350933pt;}
.y12c{bottom:1482.435200pt;}
.y1a2{bottom:1486.480267pt;}
.y162{bottom:1495.150933pt;}
.y12b{bottom:1495.235333pt;}
.y6c{bottom:1499.576667pt;}
.y12a{bottom:1504.898133pt;}
.y127{bottom:1505.843067pt;}
.y1c2{bottom:1517.529467pt;}
.ya0{bottom:1518.474133pt;}
.yd8{bottom:1522.552267pt;}
.y190{bottom:1527.923200pt;}
.y131{bottom:1539.560400pt;}
.h8{height:24.818273pt;}
.h7{height:24.818330pt;}
.hd{height:24.818347pt;}
.h9{height:24.818398pt;}
.ha{height:24.818448pt;}
.hb{height:24.818478pt;}
.h11{height:24.818485pt;}
.he{height:24.818528pt;}
.h13{height:24.818678pt;}
.hf{height:24.818743pt;}
.hc{height:24.818765pt;}
.h10{height:24.818813pt;}
.h19{height:25.612367pt;}
.h17{height:25.612500pt;}
.h1c{height:25.612508pt;}
.h1a{height:25.612609pt;}
.h18{height:25.612665pt;}
.h1b{height:25.613346pt;}
.h12{height:33.091350pt;}
.h14{height:37.227769pt;}
.h22{height:37.351339pt;}
.h21{height:37.351562pt;}
.h2{height:42.687500pt;}
.h24{height:53.359375pt;}
.h6{height:57.909863pt;}
.h16{height:59.762500pt;}
.h20{height:64.031086pt;}
.h1f{height:64.031200pt;}
.h1d{height:64.031250pt;}
.h15{height:72.295502pt;}
.h5{height:81.474983pt;}
.h1e{height:83.976033pt;}
.h4{height:88.068992pt;}
.h3{height:93.887500pt;}
.h23{height:93.888033pt;}
.h1{height:1587.333333pt;}
.h0{height:1587.400000pt;}
.w0{width:2245.040000pt;}
.w1{width:2245.333333pt;}
.x0{left:0.000000pt;}
.x2{left:30.236267pt;}
.xc{left:57.130933pt;}
.xb{left:63.594267pt;}
.x1d{left:65.205067pt;}
.x1e{left:67.246000pt;}
.x4f{left:75.590533pt;}
.x17{left:87.737200pt;}
.x6a{left:93.543333pt;}
.x52{left:94.488267pt;}
.xd{left:95.824133pt;}
.x71{left:98.267733pt;}
.x1f{left:102.482133pt;}
.x2b{left:107.527600pt;}
.xc4{left:110.866133pt;}
.x20{left:116.958267pt;}
.x73{left:120.000000pt;}
.xbc{left:123.779600pt;}
.xb1{left:129.861333pt;}
.x79{left:132.283467pt;}
.xb6{left:145.090533pt;}
.x76{left:153.448800pt;}
.xbd{left:155.905600pt;}
.x2c{left:157.843333pt;}
.x77{left:161.259867pt;}
.x56{left:169.510667pt;}
.xe{left:179.184000pt;}
.x24{left:180.222000pt;}
.x60{left:185.196933pt;}
.xb2{left:193.080000pt;}
.x1c{left:205.650933pt;}
.x1b{left:207.167067pt;}
.xc5{left:209.763733pt;}
.xb7{left:212.116533pt;}
.x25{left:213.844400pt;}
.x2a{left:227.804000pt;}
.x26{left:257.860133pt;}
.xb4{left:260.423867pt;}
.x19{left:272.632400pt;}
.xf{left:286.867733pt;}
.x78{left:298.582667pt;}
.x6{left:311.181067pt;}
.x16{left:313.344667pt;}
.x21{left:320.346667pt;}
.xc6{left:330.538000pt;}
.xb3{left:333.548800pt;}
.x13{left:340.256400pt;}
.x31{left:359.664933pt;}
.x12{left:365.166133pt;}
.x6c{left:379.842533pt;}
.xa2{left:383.433067pt;}
.x5e{left:389.246800pt;}
.xb8{left:412.868800pt;}
.x9f{left:421.372667pt;}
.xc7{left:442.349067pt;}
.x32{left:443.876267pt;}
.xc2{left:450.623600pt;}
.xc1{left:464.717333pt;}
.x63{left:477.504667pt;}
.x18{left:480.845600pt;}
.xb9{left:482.790000pt;}
.x23{left:490.226533pt;}
.x14{left:509.168667pt;}
.x15{left:513.387067pt;}
.x2e{left:545.483333pt;}
.x64{left:565.080133pt;}
.x30{left:566.900000pt;}
.x2d{left:582.130400pt;}
.x1a{left:587.376133pt;}
.x10{left:598.263600pt;}
.x27{left:604.584000pt;}
.x2f{left:612.843733pt;}
.x61{left:632.523200pt;}
.x59{left:634.716533pt;}
.x84{left:665.366000pt;}
.x33{left:667.275600pt;}
.xbb{left:676.063067pt;}
.xa4{left:688.448667pt;}
.x29{left:705.328000pt;}
.x28{left:712.791867pt;}
.xaf{left:717.378133pt;}
.x11{left:730.803600pt;}
.x5a{left:746.338533pt;}
.xa{left:747.612267pt;}
.x22{left:749.811200pt;}
.xab{left:763.940667pt;}
.x7b{left:775.341333pt;}
.xa9{left:812.810400pt;}
.x5d{left:816.333333pt;}
.x58{left:818.733333pt;}
.xa3{left:835.117733pt;}
.xba{left:843.003867pt;}
.xbf{left:844.094533pt;}
.x55{left:856.839733pt;}
.xad{left:859.143733pt;}
.x5b{left:862.244000pt;}
.x75{left:864.566933pt;}
.x5f{left:894.930533pt;}
.x6b{left:897.149600pt;}
.xaa{left:905.138533pt;}
.x5{left:921.112667pt;}
.x5c{left:930.275600pt;}
.x85{left:989.775467pt;}
.x8a{left:991.832000pt;}
.x95{left:993.488267pt;}
.x6f{left:996.878533pt;}
.x8e{left:1004.556000pt;}
.x7c{left:1016.692933pt;}
.x87{left:1023.321600pt;}
.x9b{left:1024.889333pt;}
.x96{left:1031.306000pt;}
.xb0{left:1033.341733pt;}
.x94{left:1035.915333pt;}
.x93{left:1041.430933pt;}
.x9d{left:1051.175733pt;}
.x89{left:1053.561200pt;}
.x9a{left:1058.014267pt;}
.x98{left:1059.795600pt;}
.x4b{left:1060.753600pt;}
.x92{left:1063.707067pt;}
.x4c{left:1070.254133pt;}
.x8d{left:1081.597600pt;}
.x72{left:1087.690133pt;}
.x88{left:1089.717467pt;}
.x8f{left:1102.701867pt;}
.x80{left:1112.440933pt;}
.x62{left:1117.532667pt;}
.xc0{left:1120.629867pt;}
.xa5{left:1122.519733pt;}
.x9c{left:1139.753867pt;}
.x7f{left:1150.866133pt;}
.x91{left:1154.342400pt;}
.x8c{left:1169.347600pt;}
.x74{left:1170.708667pt;}
.x7a{left:1179.212667pt;}
.x97{left:1189.149733pt;}
.x99{left:1190.988267pt;}
.x86{left:1194.180933pt;}
.x9e{left:1198.774800pt;}
.x90{left:1201.389333pt;}
.x8b{left:1210.806000pt;}
.x9{left:1220.714000pt;}
.x66{left:1224.330667pt;}
.x47{left:1251.693333pt;}
.x7d{left:1254.803200pt;}
.xac{left:1257.169067pt;}
.x46{left:1259.574400pt;}
.x45{left:1261.018267pt;}
.x4a{left:1305.643200pt;}
.x68{left:1322.141733pt;}
.xa6{left:1326.148133pt;}
.xb5{left:1333.809600pt;}
.x69{left:1336.059067pt;}
.xa8{left:1340.695067pt;}
.x70{left:1343.622133pt;}
.xae{left:1352.372133pt;}
.x42{left:1375.555200pt;}
.x44{left:1379.930133pt;}
.x43{left:1383.633333pt;}
.xa1{left:1388.031600pt;}
.x83{left:1394.645733pt;}
.xa7{left:1398.366800pt;}
.x35{left:1421.709733pt;}
.x36{left:1422.817600pt;}
.x37{left:1426.233200pt;}
.x81{left:1449.175733pt;}
.x4d{left:1455.334933pt;}
.x39{left:1462.370133pt;}
.x38{left:1469.137333pt;}
.x41{left:1482.402533pt;}
.x7e{left:1485.354267pt;}
.x40{left:1487.355600pt;}
.x3e{left:1491.443333pt;}
.x3c{left:1493.935600pt;}
.x3f{left:1499.537067pt;}
.x3b{left:1500.830933pt;}
.x65{left:1505.511867pt;}
.x3d{left:1508.943333pt;}
.x6e{left:1528.188933pt;}
.x1{left:1541.044533pt;}
.x57{left:1545.448933pt;}
.x8{left:1554.469067pt;}
.x7{left:1556.182667pt;}
.x3a{left:1584.893333pt;}
.xa0{left:1601.102400pt;}
.xbe{left:1696.062933pt;}
.x67{left:1700.787467pt;}
.x82{left:1719.908267pt;}
.xc3{left:1764.094400pt;}
.x48{left:1797.036133pt;}
.x54{left:1798.029467pt;}
.x49{left:1799.616400pt;}
.x4{left:1840.630000pt;}
.x53{left:1865.176267pt;}
.x50{left:1910.270933pt;}
.x51{left:1911.782933pt;}
.x4e{left:1944.567067pt;}
.x34{left:1952.126000pt;}
.x6d{left:2020.787467pt;}
.x3{left:2174.784000pt;}
}




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