
    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_99e763f5cdeb37cdcb6c59a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_37ee1c90bf5a3127f2bd219d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984333;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_625a8fa2476a1682d933ef93.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.121000;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_d67df4e9c268bd136794f0fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_55fc244e673d2d14e28e6a5b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.131000;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_6d27de46b3efd07d22c45acf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.156000;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_e21137e25ed4a11ac89a1065.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8f26f33b173e53b167018624.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2f916755ca5d188e71342c8c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b10d748b5a6e023ad317041c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.768555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4db8dd0967e65a05ce57bb99.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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;}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);}
.m3{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m2{transform:matrix(0.244537,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051977,0.244537,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.ls65{letter-spacing:-1.320000px;}
.ls61{letter-spacing:-1.188000px;}
.ls53{letter-spacing:-1.122000px;}
.ls62{letter-spacing:-1.056000px;}
.ls27{letter-spacing:-0.969600px;}
.ls9{letter-spacing:-0.960000px;}
.ls4d{letter-spacing:-0.924000px;}
.ls54{letter-spacing:-0.858000px;}
.ls40{letter-spacing:-0.792000px;}
.ls80{letter-spacing:-0.780000px;}
.ls2a{letter-spacing:-0.726000px;}
.ls79{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.702000px;}
.ls31{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.648000px;}
.ls46{letter-spacing:-0.600000px;}
.ls33{letter-spacing:-0.594000px;}
.ls19{letter-spacing:-0.570000px;}
.ls45{letter-spacing:-0.540000px;}
.ls2b{letter-spacing:-0.528000px;}
.ls4e{letter-spacing:-0.486000px;}
.ls6{letter-spacing:-0.480000px;}
.ls32{letter-spacing:-0.462000px;}
.ls5b{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.420000px;}
.lsd{letter-spacing:-0.399000px;}
.ls1a{letter-spacing:-0.396000px;}
.ls36{letter-spacing:-0.378000px;}
.ls47{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.330000px;}
.ls66{letter-spacing:-0.300000px;}
.lse{letter-spacing:-0.285000px;}
.ls35{letter-spacing:-0.270000px;}
.ls28{letter-spacing:-0.264000px;}
.ls72{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.228000px;}
.ls1b{letter-spacing:-0.198000px;}
.ls7a{letter-spacing:-0.180000px;}
.ls5c{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.132000px;}
.ls71{letter-spacing:-0.120000px;}
.ls57{letter-spacing:-0.096000px;}
.ls29{letter-spacing:-0.066000px;}
.ls78{letter-spacing:-0.060000px;}
.ls34{letter-spacing:-0.054000px;}
.ls5d{letter-spacing:-0.048000px;}
.ls8{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.010800px;}
.ls42{letter-spacing:0.016200px;}
.ls43{letter-spacing:0.016800px;}
.ls4a{letter-spacing:0.024600px;}
.ls7c{letter-spacing:0.030000px;}
.ls41{letter-spacing:0.033000px;}
.ls11{letter-spacing:0.057000px;}
.ls63{letter-spacing:0.060000px;}
.ls15{letter-spacing:0.066000px;}
.ls6d{letter-spacing:0.084000px;}
.ls83{letter-spacing:0.090000px;}
.ls21{letter-spacing:0.099000px;}
.ls5{letter-spacing:0.114000px;}
.ls64{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.132000px;}
.ls4c{letter-spacing:0.162000px;}
.ls55{letter-spacing:0.165000px;}
.ls70{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.198000px;}
.ls50{letter-spacing:0.210000px;}
.ls14{letter-spacing:0.228000px;}
.ls7f{letter-spacing:0.240000px;}
.ls51{letter-spacing:0.252000px;}
.ls52{letter-spacing:0.258000px;}
.ls16{letter-spacing:0.264000px;}
.ls0{letter-spacing:0.270000px;}
.ls4b{letter-spacing:0.297000px;}
.ls69{letter-spacing:0.300000px;}
.ls30{letter-spacing:0.324000px;}
.ls2e{letter-spacing:0.330000px;}
.ls10{letter-spacing:0.342000px;}
.ls49{letter-spacing:0.343200px;}
.ls76{letter-spacing:0.360000px;}
.ls48{letter-spacing:0.363000px;}
.ls25{letter-spacing:0.396000px;}
.ls56{letter-spacing:0.399000px;}
.ls60{letter-spacing:0.429000px;}
.ls12{letter-spacing:0.456000px;}
.ls2d{letter-spacing:0.462000px;}
.ls82{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.484500px;}
.ls2f{letter-spacing:0.486000px;}
.ls3{letter-spacing:0.513000px;}
.ls22{letter-spacing:0.528000px;}
.ls67{letter-spacing:0.540000px;}
.ls26{letter-spacing:0.561000px;}
.ls38{letter-spacing:0.594000px;}
.ls75{letter-spacing:0.630000px;}
.ls6a{letter-spacing:0.643200px;}
.ls24{letter-spacing:0.660000px;}
.ls5a{letter-spacing:0.702000px;}
.ls7d{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.726000px;}
.ls13{letter-spacing:0.741000px;}
.ls1{letter-spacing:0.756000px;}
.ls5e{letter-spacing:0.759000px;}
.ls77{letter-spacing:0.780000px;}
.ls18{letter-spacing:0.792000px;}
.ls2{letter-spacing:0.798000px;}
.lsc{letter-spacing:0.810000px;}
.ls20{letter-spacing:0.825000px;}
.ls6c{letter-spacing:0.840000px;}
.ls39{letter-spacing:0.858000px;}
.ls3f{letter-spacing:0.884400px;}
.ls5f{letter-spacing:0.891000px;}
.ls68{letter-spacing:0.900000px;}
.ls23{letter-spacing:0.924000px;}
.ls74{letter-spacing:0.960000px;}
.ls3a{letter-spacing:0.990000px;}
.ls4f{letter-spacing:1.005000px;}
.ls7b{letter-spacing:1.020000px;}
.ls37{letter-spacing:1.056000px;}
.ls73{letter-spacing:1.080000px;}
.ls58{letter-spacing:1.089000px;}
.ls3b{letter-spacing:1.122000px;}
.ls59{letter-spacing:1.142400px;}
.ls1e{letter-spacing:1.188000px;}
.ls6e{letter-spacing:1.200000px;}
.ls3e{letter-spacing:1.320000px;}
.ls3d{letter-spacing:1.518000px;}
.ls3c{letter-spacing:1.675800px;}
.ls81{letter-spacing:1.700400px;}
.ls6f{letter-spacing:2.040000px;}
.ls6b{letter-spacing:2.143200px;}
.ls7e{letter-spacing:4.200000px;}
.ls84{letter-spacing:148.782600px;}
.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;}
}
.ws51{word-spacing:-66.000000px;}
.ws5f{word-spacing:-17.160000px;}
.ws90{word-spacing:-17.040000px;}
.ws50{word-spacing:-16.500000px;}
.ws5a{word-spacing:-16.434000px;}
.ws32{word-spacing:-16.302000px;}
.ws91{word-spacing:-16.200000px;}
.ws47{word-spacing:-16.170000px;}
.ws9d{word-spacing:-16.080000px;}
.ws48{word-spacing:-15.972000px;}
.wsa0{word-spacing:-15.960000px;}
.wsa1{word-spacing:-15.900000px;}
.ws31{word-spacing:-15.840000px;}
.wsa4{word-spacing:-15.780000px;}
.wsba{word-spacing:-15.720000px;}
.ws8c{word-spacing:-15.540000px;}
.wsbb{word-spacing:-15.480000px;}
.wsb2{word-spacing:-15.360000px;}
.ws8f{word-spacing:-15.120000px;}
.ws8e{word-spacing:-15.084000px;}
.ws88{word-spacing:-15.060000px;}
.wsaf{word-spacing:-15.030000px;}
.ws87{word-spacing:-15.000000px;}
.ws9c{word-spacing:-14.940000px;}
.wsa2{word-spacing:-14.880000px;}
.wsb9{word-spacing:-14.760000px;}
.ws86{word-spacing:-14.700000px;}
.ws8b{word-spacing:-14.640000px;}
.wsa3{word-spacing:-14.580000px;}
.ws9e{word-spacing:-14.520000px;}
.wsb0{word-spacing:-14.460000px;}
.wsb1{word-spacing:-14.400000px;}
.ws8d{word-spacing:-14.340000px;}
.ws9f{word-spacing:-14.280000px;}
.ws3{word-spacing:-14.256000px;}
.ws14{word-spacing:-13.965000px;}
.ws2{word-spacing:-13.770000px;}
.ws34{word-spacing:-13.230000px;}
.ws1{word-spacing:-12.798000px;}
.ws6c{word-spacing:-12.510000px;}
.ws13{word-spacing:-11.760000px;}
.ws5c{word-spacing:-11.676000px;}
.ws59{word-spacing:-11.068200px;}
.ws33{word-spacing:-10.725000px;}
.ws0{word-spacing:-10.080000px;}
.wsb6{word-spacing:-4.200000px;}
.wsad{word-spacing:-0.900000px;}
.ws1c{word-spacing:-0.858000px;}
.ws1a{word-spacing:-0.792000px;}
.ws57{word-spacing:-0.780000px;}
.ws17{word-spacing:-0.741000px;}
.ws2a{word-spacing:-0.726000px;}
.ws8a{word-spacing:-0.720000px;}
.ws7{word-spacing:-0.702000px;}
.wsd{word-spacing:-0.684000px;}
.ws3e{word-spacing:-0.660000px;}
.ws8{word-spacing:-0.648000px;}
.ws7e{word-spacing:-0.624000px;}
.ws3a{word-spacing:-0.594000px;}
.ws7a{word-spacing:-0.528000px;}
.ws55{word-spacing:-0.480000px;}
.ws4b{word-spacing:-0.462000px;}
.wsb3{word-spacing:-0.420000px;}
.ws22{word-spacing:-0.396000px;}
.ws15{word-spacing:-0.342000px;}
.ws44{word-spacing:-0.330000px;}
.wsab{word-spacing:-0.300000px;}
.ws52{word-spacing:-0.264000px;}
.ws67{word-spacing:-0.252000px;}
.wsb7{word-spacing:-0.240000px;}
.ws66{word-spacing:-0.210000px;}
.ws21{word-spacing:-0.198000px;}
.ws9a{word-spacing:-0.180000px;}
.ws77{word-spacing:-0.168000px;}
.ws3c{word-spacing:-0.162000px;}
.ws5b{word-spacing:-0.132000px;}
.ws12{word-spacing:-0.114000px;}
.ws2e{word-spacing:-0.066000px;}
.wsb5{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.wsa9{word-spacing:0.060000px;}
.ws39{word-spacing:0.066000px;}
.ws7f{word-spacing:0.096000px;}
.ws97{word-spacing:0.120000px;}
.ws29{word-spacing:0.132000px;}
.ws27{word-spacing:0.198000px;}
.ws93{word-spacing:0.240000px;}
.ws4d{word-spacing:0.264000px;}
.ws95{word-spacing:0.300000px;}
.ws42{word-spacing:0.330000px;}
.ws19{word-spacing:0.342000px;}
.ws24{word-spacing:0.396000px;}
.wsbc{word-spacing:0.420000px;}
.ws7d{word-spacing:0.432000px;}
.ws1d{word-spacing:0.462000px;}
.ws38{word-spacing:0.528000px;}
.ws53{word-spacing:0.540000px;}
.ws28{word-spacing:0.594000px;}
.ws83{word-spacing:0.648000px;}
.ws56{word-spacing:0.660000px;}
.ws9{word-spacing:0.702000px;}
.wsb4{word-spacing:0.720000px;}
.ws2d{word-spacing:0.726000px;}
.ws10{word-spacing:0.741000px;}
.ws1e{word-spacing:0.792000px;}
.ws26{word-spacing:0.858000px;}
.ws9b{word-spacing:0.900000px;}
.ws84{word-spacing:0.918000px;}
.ws2c{word-spacing:0.924000px;}
.ws6{word-spacing:0.960000px;}
.ws1f{word-spacing:0.990000px;}
.ws58{word-spacing:1.020000px;}
.ws36{word-spacing:1.056000px;}
.ws18{word-spacing:1.083000px;}
.ws35{word-spacing:1.122000px;}
.ws80{word-spacing:1.134000px;}
.wsa5{word-spacing:1.140000px;}
.ws79{word-spacing:1.176000px;}
.ws20{word-spacing:1.188000px;}
.ws94{word-spacing:1.200000px;}
.ws23{word-spacing:1.254000px;}
.wsa7{word-spacing:1.260000px;}
.ws3d{word-spacing:1.296000px;}
.ws40{word-spacing:1.320000px;}
.ws78{word-spacing:1.344000px;}
.wsa{word-spacing:1.350000px;}
.ws11{word-spacing:1.368000px;}
.ws30{word-spacing:1.386000px;}
.ws82{word-spacing:1.404000px;}
.wsf{word-spacing:1.425000px;}
.ws46{word-spacing:1.452000px;}
.ws5e{word-spacing:1.458000px;}
.ws54{word-spacing:1.500000px;}
.wsb{word-spacing:1.512000px;}
.ws2f{word-spacing:1.518000px;}
.wsb8{word-spacing:1.560000px;}
.wsc{word-spacing:1.566000px;}
.ws41{word-spacing:1.584000px;}
.ws96{word-spacing:1.620000px;}
.ws1b{word-spacing:1.650000px;}
.wse{word-spacing:1.653000px;}
.ws99{word-spacing:1.680000px;}
.ws4c{word-spacing:1.716000px;}
.wsac{word-spacing:1.740000px;}
.ws37{word-spacing:1.782000px;}
.ws92{word-spacing:1.800000px;}
.ws2b{word-spacing:1.848000px;}
.ws43{word-spacing:1.914000px;}
.wsa8{word-spacing:1.920000px;}
.ws45{word-spacing:1.980000px;}
.ws3f{word-spacing:2.046000px;}
.wsa6{word-spacing:2.100000px;}
.ws4f{word-spacing:2.112000px;}
.ws81{word-spacing:2.178000px;}
.wsae{word-spacing:2.220000px;}
.ws25{word-spacing:2.244000px;}
.ws49{word-spacing:2.310000px;}
.ws4e{word-spacing:2.376000px;}
.ws4a{word-spacing:2.442000px;}
.ws16{word-spacing:7.125000px;}
.ws98{word-spacing:12.600000px;}
.wsaa{word-spacing:14.640000px;}
.ws3b{word-spacing:35.262000px;}
.ws63{word-spacing:65.401600px;}
.ws89{word-spacing:75.000000px;}
.ws7b{word-spacing:77.469024px;}
.ws6b{word-spacing:85.732000px;}
.ws62{word-spacing:88.078400px;}
.ws64{word-spacing:88.230400px;}
.ws7c{word-spacing:88.897662px;}
.ws60{word-spacing:90.871400px;}
.ws74{word-spacing:127.487600px;}
.ws65{word-spacing:128.216000px;}
.ws73{word-spacing:152.507600px;}
.ws61{word-spacing:162.118200px;}
.ws5d{word-spacing:199.109600px;}
.ws6d{word-spacing:215.057600px;}
.ws6f{word-spacing:217.577600px;}
.ws70{word-spacing:240.077600px;}
.ws68{word-spacing:244.171800px;}
.ws76{word-spacing:277.607600px;}
.ws85{word-spacing:318.288600px;}
.ws75{word-spacing:452.958400px;}
.ws71{word-spacing:462.093800px;}
.ws72{word-spacing:511.999200px;}
.ws6e{word-spacing:528.783800px;}
.ws6a{word-spacing:987.397800px;}
.ws5{word-spacing:1051.632000px;}
.ws69{word-spacing:1111.597800px;}
._2{margin-left:-1015.629600px;}
._a{margin-left:-33.384600px;}
._c{margin-left:-20.374200px;}
._b{margin-left:-18.484200px;}
._8{margin-left:-16.702200px;}
._45{margin-left:-13.644000px;}
._4{margin-left:-12.190800px;}
._1b{margin-left:-5.805000px;}
._12{margin-left:-4.800000px;}
._36{margin-left:-3.334500px;}
._0{margin-left:-1.921200px;}
._3{width:1.000200px;}
._26{width:2.301000px;}
._46{width:4.223400px;}
._7{width:7.105800px;}
._11{width:33.696000px;}
._5{width:36.000000px;}
._e{width:37.080000px;}
._10{width:74.778000px;}
._20{width:77.911600px;}
._1a{width:86.617200px;}
._22{width:90.422000px;}
._43{width:98.959200px;}
._25{width:100.740400px;}
._17{width:106.499600px;}
._39{width:110.567982px;}
._23{width:113.250000px;}
._47{width:116.766600px;}
._1d{width:126.058200px;}
._51{width:127.769400px;}
._4d{width:134.024400px;}
._19{width:135.856400px;}
._1c{width:137.911000px;}
._24{width:140.726000px;}
._18{width:142.014800px;}
._48{width:144.535200px;}
._40{width:145.669200px;}
._21{width:147.266800px;}
._4c{width:148.782600px;}
._16{width:157.578000px;}
._1e{width:159.265400px;}
._53{width:161.374200px;}
._49{width:162.859200px;}
._38{width:165.016800px;}
._4e{width:168.531600px;}
._52{width:170.370600px;}
._50{width:173.884200px;}
._1f{width:175.327800px;}
._d{width:180.863400px;}
._4f{width:182.880600px;}
._2d{width:192.130200px;}
._14{width:201.888000px;}
._6{width:205.344000px;}
._4a{width:224.211600px;}
._34{width:227.567600px;}
._2c{width:238.840200px;}
._4b{width:246.447600px;}
._30{width:252.586800px;}
._2b{width:256.681800px;}
._42{width:267.606600px;}
._13{width:276.378800px;}
._28{width:286.671600px;}
._3e{width:292.626600px;}
._f{width:306.042000px;}
._15{width:316.500400px;}
._33{width:320.433800px;}
._9{width:329.554800px;}
._3b{width:355.177200px;}
._37{width:367.778700px;}
._44{width:386.661600px;}
._3f{width:411.682200px;}
._3d{width:430.597800px;}
._41{width:455.617800px;}
._3a{width:468.127200px;}
._3c{width:474.231600px;}
._35{width:478.788800px;}
._2f{width:530.403800px;}
._31{width:542.913800px;}
._32{width:555.378800px;}
._27{width:563.155200px;}
._2e{width:579.588800px;}
._1{width:646.554000px;}
._29{width:686.437800px;}
._2a{width:693.187800px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs11{font-size:33.597000px;}
.fs10{font-size:39.687000px;}
.fs1{font-size:42.000000px;}
.fs8{font-size:42.900000px;}
.fsa{font-size:43.858437px;}
.fsb{font-size:44.413291px;}
.fsf{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:48.480000px;}
.fse{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fsd{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs9{font-size:67.474452px;}
.fsc{font-size:68.328164px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y46{bottom:88.603350px;}
.y156{bottom:89.172000px;}
.yfa{bottom:91.376850px;}
.y81{bottom:91.417350px;}
.y97{bottom:91.417500px;}
.y214{bottom:91.924950px;}
.y77{bottom:92.988150px;}
.y13b{bottom:93.333000px;}
.y1da{bottom:93.738150px;}
.yb7{bottom:93.956700px;}
.y21{bottom:94.669800px;}
.y208{bottom:95.988150px;}
.y14f{bottom:96.403950px;}
.y1be{bottom:99.141750px;}
.y80{bottom:105.667350px;}
.y96{bottom:105.667500px;}
.yc3{bottom:105.667650px;}
.y45{bottom:105.853350px;}
.y155{bottom:106.422000px;}
.yf9{bottom:108.626850px;}
.y1d9{bottom:109.488150px;}
.y76{bottom:110.238150px;}
.y13a{bottom:110.583150px;}
.yb6{bottom:111.206700px;}
.y207{bottom:111.738150px;}
.y213{bottom:112.428450px;}
.y14e{bottom:113.653950px;}
.y20{bottom:115.669800px;}
.y1bd{bottom:116.391750px;}
.y7f{bottom:119.917350px;}
.y95{bottom:119.917500px;}
.yc2{bottom:119.917650px;}
.y44{bottom:123.103350px;}
.y154{bottom:123.672000px;}
.y1d8{bottom:125.238150px;}
.yf8{bottom:125.876850px;}
.y75{bottom:127.488150px;}
.y212{bottom:127.706550px;}
.y139{bottom:127.833150px;}
.yb5{bottom:128.456700px;}
.y1f{bottom:130.669800px;}
.y14d{bottom:130.903950px;}
.y1bc{bottom:133.641750px;}
.y7e{bottom:134.167350px;}
.y94{bottom:134.167500px;}
.yc1{bottom:134.167650px;}
.y43{bottom:140.353350px;}
.y153{bottom:140.922000px;}
.y1d7{bottom:140.988150px;}
.yf7{bottom:143.126850px;}
.y206{bottom:143.238150px;}
.y111{bottom:143.696100px;}
.y211{bottom:144.526950px;}
.y74{bottom:144.738150px;}
.y138{bottom:145.083150px;}
.y1e{bottom:145.669800px;}
.yb4{bottom:145.706700px;}
.y14c{bottom:148.153950px;}
.y7d{bottom:148.417350px;}
.y93{bottom:148.417650px;}
.y1bb{bottom:150.891750px;}
.y1d6{bottom:156.738150px;}
.y42{bottom:157.603350px;}
.y152{bottom:158.172000px;}
.y205{bottom:158.988150px;}
.yf6{bottom:160.376850px;}
.y1d{bottom:160.669800px;}
.y110{bottom:160.946100px;}
.y210{bottom:161.534850px;}
.y73{bottom:161.988150px;}
.y137{bottom:162.333150px;}
.y7c{bottom:162.667350px;}
.y92{bottom:162.667650px;}
.yb3{bottom:162.956700px;}
.y14b{bottom:165.403950px;}
.y1ba{bottom:168.141750px;}
.y1d5{bottom:172.488150px;}
.y204{bottom:174.738150px;}
.y41{bottom:174.853350px;}
.y1c{bottom:175.669800px;}
.y7b{bottom:176.917350px;}
.y91{bottom:176.917650px;}
.yf5{bottom:177.626850px;}
.y10f{bottom:178.196100px;}
.y20f{bottom:178.542600px;}
.y72{bottom:179.238150px;}
.y136{bottom:179.583150px;}
.yb2{bottom:180.206700px;}
.y14a{bottom:182.653950px;}
.y1b9{bottom:185.391750px;}
.y84{bottom:187.863150px;}
.y1d4{bottom:188.238150px;}
.y203{bottom:190.488150px;}
.y1b{bottom:190.669800px;}
.y7a{bottom:191.167350px;}
.y90{bottom:191.167650px;}
.y40{bottom:192.103350px;}
.yf4{bottom:194.876850px;}
.y10e{bottom:195.446100px;}
.y20e{bottom:195.550500px;}
.y71{bottom:196.488150px;}
.y135{bottom:196.833150px;}
.yb1{bottom:197.456700px;}
.y149{bottom:199.903950px;}
.y19e{bottom:201.259800px;}
.y1b8{bottom:202.641750px;}
.yc0{bottom:202.796100px;}
.y1d3{bottom:203.988150px;}
.y79{bottom:205.417350px;}
.y1a1{bottom:205.417650px;}
.y1a{bottom:205.669800px;}
.y202{bottom:206.238150px;}
.y3f{bottom:209.353350px;}
.yf3{bottom:212.126850px;}
.y20d{bottom:212.558400px;}
.y10d{bottom:212.696100px;}
.y19d{bottom:213.259800px;}
.y70{bottom:213.738150px;}
.y134{bottom:214.083150px;}
.y78{bottom:219.667350px;}
.y1d2{bottom:219.738150px;}
.y1b7{bottom:219.891750px;}
.ybf{bottom:220.046100px;}
.y19{bottom:220.669800px;}
.y201{bottom:221.988150px;}
.yb0{bottom:223.331700px;}
.y19c{bottom:225.259800px;}
.y3e{bottom:226.603350px;}
.yf2{bottom:229.376850px;}
.y20c{bottom:229.566300px;}
.y10c{bottom:229.946100px;}
.y6f{bottom:230.988150px;}
.y133{bottom:231.333150px;}
.y148{bottom:234.403950px;}
.y1d1{bottom:235.488150px;}
.y18{bottom:235.669800px;}
.y8f{bottom:236.208600px;}
.y1b6{bottom:237.141750px;}
.y19b{bottom:237.259800px;}
.ybe{bottom:237.296100px;}
.y200{bottom:237.738150px;}
.y3d{bottom:243.853350px;}
.y20b{bottom:246.386700px;}
.yf1{bottom:246.626850px;}
.y6e{bottom:248.238150px;}
.y132{bottom:248.583150px;}
.y17{bottom:250.669800px;}
.y1d0{bottom:251.238150px;}
.y147{bottom:251.653950px;}
.y8e{bottom:253.458600px;}
.y1ff{bottom:253.488150px;}
.y1b5{bottom:254.391750px;}
.ybd{bottom:254.546100px;}
.y3c{bottom:261.103350px;}
.y196{bottom:262.574462px;}
.yf0{bottom:263.876850px;}
.y6d{bottom:265.488150px;}
.y20a{bottom:265.578600px;}
.y16{bottom:265.669800px;}
.y131{bottom:265.833150px;}
.yaf{bottom:266.456700px;}
.y1cf{bottom:266.988150px;}
.y146{bottom:268.903950px;}
.y1fe{bottom:269.238150px;}
.y1b4{bottom:271.641750px;}
.ybc{bottom:271.796100px;}
.y130{bottom:275.822400px;}
.y3b{bottom:278.353350px;}
.yef{bottom:281.126850px;}
.y6c{bottom:282.738150px;}
.y8c{bottom:283.008600px;}
.y18f{bottom:283.429800px;}
.yae{bottom:283.706700px;}
.y1fd{bottom:284.988150px;}
.y145{bottom:286.153950px;}
.y209{bottom:286.660350px;}
.y12f{bottom:287.822400px;}
.y8b{bottom:287.958600px;}
.y1b3{bottom:288.891750px;}
.ybb{bottom:289.046100px;}
.y1ce{bottom:291.363150px;}
.y8d{bottom:292.908600px;}
.y3a{bottom:295.603350px;}
.y15{bottom:295.670700px;}
.yee{bottom:298.376850px;}
.y6b{bottom:299.988150px;}
.y1fc{bottom:300.738150px;}
.yad{bottom:300.956700px;}
.y144{bottom:303.403950px;}
.y190{bottom:303.655194px;}
.y197{bottom:305.217454px;}
.y1b2{bottom:306.141750px;}
.yba{bottom:306.296100px;}
.y12e{bottom:307.352250px;}
.y13f{bottom:307.925100px;}
.y1a2{bottom:308.988150px;}
.y39{bottom:312.853350px;}
.yed{bottom:315.626850px;}
.y1fb{bottom:316.488150px;}
.y6a{bottom:317.238150px;}
.yac{bottom:318.206700px;}
.y13e{bottom:319.925100px;}
.y143{bottom:320.653950px;}
.y8a{bottom:322.458600px;}
.y1b1{bottom:323.391750px;}
.y191{bottom:323.410230px;}
.yb9{bottom:323.546100px;}
.y198{bottom:323.880588px;}
.y12d{bottom:324.172650px;}
.y38{bottom:330.103350px;}
.y1fa{bottom:332.238150px;}
.yec{bottom:332.876850px;}
.y170{bottom:334.006350px;}
.y69{bottom:334.488150px;}
.y188{bottom:334.562250px;}
.yab{bottom:335.456700px;}
.y142{bottom:337.903950px;}
.y89{bottom:339.708600px;}
.y1b0{bottom:340.641750px;}
.yb8{bottom:340.796100px;}
.y12c{bottom:341.180550px;}
.y192{bottom:343.635624px;}
.y14{bottom:345.921300px;}
.y37{bottom:347.353350px;}
.y1f9{bottom:347.988150px;}
.yeb{bottom:350.126850px;}
.y68{bottom:351.738150px;}
.y88{bottom:352.008600px;}
.yaa{bottom:352.706700px;}
.y141{bottom:355.153950px;}
.y87{bottom:356.958600px;}
.y1af{bottom:357.891750px;}
.y12b{bottom:358.188450px;}
.y13{bottom:360.171300px;}
.y1f8{bottom:363.738150px;}
.y193{bottom:363.861018px;}
.y36{bottom:364.603350px;}
.yea{bottom:367.376850px;}
.y67{bottom:368.988150px;}
.y86{bottom:374.208600px;}
.y12{bottom:374.421300px;}
.y1ae{bottom:375.141750px;}
.y12a{bottom:375.196200px;}
.y1f7{bottom:379.488150px;}
.y35{bottom:381.853350px;}
.y194{bottom:383.616054px;}
.y199{bottom:384.086412px;}
.ye9{bottom:384.626850px;}
.y66{bottom:386.238150px;}
.ya9{bottom:387.206700px;}
.y11{bottom:388.671300px;}
.y85{bottom:391.458600px;}
.y129{bottom:392.204100px;}
.ye0{bottom:392.373450px;}
.y1ad{bottom:392.391750px;}
.y1f6{bottom:395.238150px;}
.y34{bottom:399.103350px;}
.ye8{bottom:401.876850px;}
.y65{bottom:403.488150px;}
.y195{bottom:403.841448px;}
.ya8{bottom:404.456700px;}
.y19a{bottom:405.403708px;}
.y151{bottom:406.835850px;}
.y128{bottom:409.212000px;}
.y1ac{bottom:409.641750px;}
.y1f5{bottom:410.988150px;}
.ydf{bottom:412.968450px;}
.y33{bottom:416.353350px;}
.ye7{bottom:419.126850px;}
.y64{bottom:420.738150px;}
.ya7{bottom:421.706700px;}
.y127{bottom:426.219900px;}
.yde{bottom:426.468450px;}
.y1f4{bottom:426.738150px;}
.y1ab{bottom:426.891750px;}
.y18e{bottom:430.659450px;}
.ye6{bottom:436.376850px;}
.y63{bottom:437.988150px;}
.ydd{bottom:439.968450px;}
.y32{bottom:442.228350px;}
.y1f3{bottom:442.488150px;}
.y126{bottom:443.227650px;}
.y1aa{bottom:444.141750px;}
.y18d{bottom:445.659450px;}
.ydc{bottom:453.468450px;}
.ye5{bottom:453.626850px;}
.y62{bottom:455.238150px;}
.ya6{bottom:456.206700px;}
.y1f2{bottom:458.238150px;}
.y125{bottom:460.235550px;}
.y1a9{bottom:461.391750px;}
.ye4{bottom:470.876850px;}
.y61{bottom:472.488150px;}
.ya5{bottom:473.456700px;}
.y1f1{bottom:473.988150px;}
.ydb{bottom:476.748000px;}
.y124{bottom:477.243450px;}
.y1a8{bottom:478.641750px;}
.y83{bottom:481.113150px;}
.y16f{bottom:481.801500px;}
.y22{bottom:487.933950px;}
.ye3{bottom:488.126850px;}
.y60{bottom:489.738150px;}
.yda{bottom:490.248000px;}
.y10{bottom:490.547250px;}
.ya4{bottom:490.706700px;}
.y171{bottom:491.148900px;}
.y123{bottom:494.063850px;}
.y1a7{bottom:495.891750px;}
.yd9{bottom:503.748000px;}
.yf{bottom:504.797250px;}
.ye2{bottom:505.376850px;}
.y1f0{bottom:505.488150px;}
.y5f{bottom:506.988150px;}
.ya3{bottom:507.956700px;}
.y159{bottom:508.233900px;}
.y172{bottom:508.234153px;}
.y18c{bottom:509.989623px;}
.y1a6{bottom:513.141750px;}
.y121{bottom:514.488300px;}
.yd8{bottom:517.248000px;}
.ye{bottom:519.047250px;}
.y4a{bottom:521.061750px;}
.y1ef{bottom:521.238150px;}
.y15a{bottom:522.015211px;}
.y173{bottom:522.561160px;}
.ye1{bottom:522.626850px;}
.y5e{bottom:524.238150px;}
.ya2{bottom:525.206700px;}
.y122{bottom:527.988300px;}
.y1a5{bottom:530.391750px;}
.y15b{bottom:536.342218px;}
.y174{bottom:536.342471px;}
.y1ee{bottom:536.988150px;}
.yd7{bottom:540.527550px;}
.y5d{bottom:541.488150px;}
.y49{bottom:542.061750px;}
.ya1{bottom:542.456700px;}
.y1a4{bottom:547.641750px;}
.y15c{bottom:550.123529px;}
.y175{bottom:550.123782px;}
.y120{bottom:551.345550px;}
.y1ed{bottom:552.738150px;}
.yd6{bottom:554.027550px;}
.y5c{bottom:558.738150px;}
.ya0{bottom:559.706700px;}
.y18b{bottom:559.816652px;}
.y48{bottom:563.061750px;}
.y15d{bottom:564.450536px;}
.y176{bottom:564.450789px;}
.y1a3{bottom:564.891750px;}
.yd5{bottom:567.527550px;}
.y1ec{bottom:568.488150px;}
.y10b{bottom:573.270450px;}
.y5b{bottom:575.988150px;}
.y9f{bottom:576.956700px;}
.y15e{bottom:578.231846px;}
.y177{bottom:578.232100px;}
.yd4{bottom:581.027550px;}
.y1eb{bottom:584.238150px;}
.y47{bottom:590.259450px;}
.y15f{bottom:592.013157px;}
.y178{bottom:592.569029px;}
.y5a{bottom:593.238150px;}
.y10a{bottom:593.773950px;}
.y9e{bottom:594.206700px;}
.y11f{bottom:594.720150px;}
.y1ea{bottom:599.988150px;}
.yd3{bottom:603.562950px;}
.y109{bottom:605.773950px;}
.y160{bottom:606.350086px;}
.y179{bottom:606.350339px;}
.y59{bottom:610.488150px;}
.y9d{bottom:611.456700px;}
.y11e{bottom:615.223650px;}
.y1e9{bottom:615.738150px;}
.yd2{bottom:617.062950px;}
.y1cc{bottom:617.983350px;}
.y18a{bottom:619.029655px;}
.y161{bottom:620.131396px;}
.y17a{bottom:620.131650px;}
.yd{bottom:620.923200px;}
.y108{bottom:626.277450px;}
.y58{bottom:627.738150px;}
.y9c{bottom:628.706700px;}
.yd1{bottom:630.562950px;}
.y1e8{bottom:631.488150px;}
.y11d{bottom:632.627700px;}
.y162{bottom:633.912707px;}
.y17b{bottom:634.458657px;}
.yc{bottom:635.173200px;}
.y31{bottom:635.988150px;}
.y107{bottom:638.277450px;}
.y1cb{bottom:638.858250px;}
.yd0{bottom:644.062950px;}
.y57{bottom:644.988150px;}
.y9b{bottom:645.956700px;}
.y1e7{bottom:647.238150px;}
.y17c{bottom:648.239968px;}
.y163{bottom:648.249636px;}
.yb{bottom:649.423200px;}
.y11c{bottom:649.448100px;}
.y106{bottom:650.277450px;}
.y1ca{bottom:655.866000px;}
.y30{bottom:656.988150px;}
.ycf{bottom:657.562950px;}
.y17d{bottom:662.021278px;}
.y164{bottom:662.030947px;}
.y56{bottom:662.238150px;}
.y1e6{bottom:662.988150px;}
.y9a{bottom:663.206700px;}
.y11b{bottom:666.268500px;}
.ya{bottom:667.423200px;}
.y1a0{bottom:670.863150px;}
.y104{bottom:671.412150px;}
.y2f{bottom:671.988150px;}
.y1c9{bottom:672.873900px;}
.y17e{bottom:676.348285px;}
.y165{bottom:676.357954px;}
.y1e5{bottom:678.738150px;}
.y55{bottom:679.488150px;}
.y99{bottom:680.456700px;}
.y105{bottom:684.912000px;}
.y103{bottom:684.912150px;}
.y9{bottom:685.423200px;}
.y11a{bottom:685.460550px;}
.y1c8{bottom:686.373900px;}
.y2e{bottom:686.988150px;}
.y19f{bottom:688.113150px;}
.y17f{bottom:690.129596px;}
.y166{bottom:690.139265px;}
.yce{bottom:692.854350px;}
.y1e4{bottom:694.488150px;}
.y54{bottom:696.738150px;}
.y98{bottom:697.706700px;}
.y2d{bottom:701.988150px;}
.y167{bottom:703.920575px;}
.y180{bottom:704.466525px;}
.y119{bottom:704.911200px;}
.y102{bottom:705.427950px;}
.ycd{bottom:706.354350px;}
.y1c7{bottom:706.889700px;}
.y1e3{bottom:710.238150px;}
.y53{bottom:713.988150px;}
.y2c{bottom:716.988150px;}
.y168{bottom:718.247582px;}
.y181{bottom:718.247836px;}
.y101{bottom:718.927950px;}
.ycc{bottom:719.854350px;}
.y8{bottom:721.423200px;}
.y118{bottom:721.731600px;}
.y140{bottom:722.613150px;}
.y1e2{bottom:725.988150px;}
.y1c6{bottom:728.149500px;}
.y52{bottom:731.238150px;}
.y2b{bottom:731.988150px;}
.y169{bottom:732.028893px;}
.y182{bottom:732.029146px;}
.ycb{bottom:733.354350px;}
.y189{bottom:735.054600px;}
.y7{bottom:735.673200px;}
.y117{bottom:738.552000px;}
.y1cd{bottom:739.863150px;}
.y100{bottom:740.187750px;}
.y1e1{bottom:741.738150px;}
.y16a{bottom:745.810204px;}
.y183{bottom:746.366075px;}
.yca{bottom:746.854350px;}
.y2a{bottom:746.988150px;}
.y51{bottom:748.488150px;}
.y1c5{bottom:749.409300px;}
.y6{bottom:753.673200px;}
.y1e0{bottom:757.488150px;}
.y116{bottom:757.744050px;}
.y16b{bottom:760.137211px;}
.y184{bottom:760.147386px;}
.yff{bottom:760.295250px;}
.y29{bottom:761.988150px;}
.y1c4{bottom:762.909300px;}
.y50{bottom:765.738150px;}
.yc9{bottom:770.133900px;}
.y1df{bottom:773.238150px;}
.y16c{bottom:773.918521px;}
.y185{bottom:773.928697px;}
.y82{bottom:774.363150px;}
.y28{bottom:776.988150px;}
.y115{bottom:777.194700px;}
.y4f{bottom:782.988150px;}
.y1c3{bottom:783.425100px;}
.yc8{bottom:783.633900px;}
.yfe{bottom:787.933050px;}
.y16d{bottom:788.245528px;}
.y186{bottom:788.255704px;}
.y1de{bottom:788.988150px;}
.y27{bottom:791.988150px;}
.y114{bottom:794.015100px;}
.yc7{bottom:797.133900px;}
.y5{bottom:798.673200px;}
.y4e{bottom:800.238150px;}
.y1c2{bottom:800.433150px;}
.y16e{bottom:802.026839px;}
.y187{bottom:802.037014px;}
.y1dd{bottom:804.738150px;}
.y26{bottom:806.988150px;}
.yc6{bottom:810.633900px;}
.y113{bottom:810.835500px;}
.yfd{bottom:815.198850px;}
.y1c0{bottom:817.441050px;}
.y4d{bottom:817.488150px;}
.y1dc{bottom:820.488150px;}
.y4{bottom:822.673200px;}
.yfc{bottom:828.698850px;}
.y112{bottom:830.027400px;}
.yc5{bottom:830.393100px;}
.y1c1{bottom:830.941050px;}
.y4c{bottom:834.738150px;}
.y13d{bottom:835.925100px;}
.y1db{bottom:836.238150px;}
.y25{bottom:836.988150px;}
.y158{bottom:837.519600px;}
.y3{bottom:846.673200px;}
.yfb{bottom:849.408450px;}
.y150{bottom:850.835850px;}
.y13c{bottom:850.925100px;}
.yc4{bottom:851.109150px;}
.y24{bottom:851.988150px;}
.y1bf{bottom:852.172350px;}
.y157{bottom:852.519600px;}
.y4b{bottom:897.945300px;}
.y2{bottom:897.986400px;}
.y23{bottom:898.032450px;}
.y1{bottom:911.936400px;}
.h29{height:24.754821px;}
.h26{height:29.242033px;}
.h28{height:29.765250px;}
.hb{height:30.030000px;}
.h13{height:31.544667px;}
.h15{height:31.943739px;}
.h20{height:32.340000px;}
.h2{height:34.320000px;}
.h3{height:34.336000px;}
.h24{height:34.650000px;}
.hf{height:34.663200px;}
.h19{height:35.376000px;}
.h25{height:36.960000px;}
.h6{height:38.610000px;}
.h7{height:38.628000px;}
.h1e{height:38.892000px;}
.h1f{height:39.774000px;}
.ha{height:40.755000px;}
.h9{height:40.774000px;}
.h22{height:41.670000px;}
.h23{height:42.615000px;}
.h1a{height:42.900000px;}
.h21{height:44.448000px;}
.h8{height:45.144000px;}
.h1d{height:45.456000px;}
.he{height:47.190000px;}
.hd{height:47.212000px;}
.hc{height:47.652000px;}
.h12{height:48.530209px;}
.h17{height:49.144231px;}
.h1b{height:50.160000px;}
.h10{height:50.473500px;}
.h1c{height:50.474100px;}
.h5{height:51.480000px;}
.h11{height:55.176000px;}
.h16{height:66.990000px;}
.h14{height:67.269727px;}
.h4{height:68.640000px;}
.h18{height:74.976000px;}
.h27{height:345.738000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w2{width:488.976000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x18{left:65.905500px;}
.x2d{left:94.606350px;}
.x1{left:95.626800px;}
.x24{left:96.944850px;}
.x58{left:104.261100px;}
.x4c{left:108.429150px;}
.x4d{left:109.589995px;}
.x59{left:110.825400px;}
.x5{left:118.169250px;}
.x55{left:124.544250px;}
.x4f{left:126.100203px;}
.x54{left:130.299828px;}
.x50{left:138.237119px;}
.x51{left:144.754937px;}
.x19{left:146.692800px;}
.x53{left:151.306352px;}
.x52{left:155.035619px;}
.x4b{left:158.509050px;}
.x23{left:173.352000px;}
.x22{left:175.701900px;}
.x44{left:179.122960px;}
.x21{left:180.622800px;}
.xd{left:182.865450px;}
.x1e{left:184.310250px;}
.x47{left:187.943395px;}
.xe{left:189.920850px;}
.x8{left:193.198350px;}
.x49{left:194.571124px;}
.x45{left:195.682360px;}
.x3d{left:204.602014px;}
.x25{left:211.695000px;}
.x46{left:215.525860px;}
.x11{left:216.559350px;}
.x1a{left:218.976300px;}
.x12{left:223.802250px;}
.x42{left:228.959910px;}
.x3c{left:230.081068px;}
.x7{left:238.041900px;}
.x9{left:240.051150px;}
.x40{left:249.815428px;}
.x3e{left:255.877618px;}
.x3f{left:257.534550px;}
.x48{left:259.102186px;}
.x41{left:262.058868px;}
.x4a{left:264.608758px;}
.x13{left:269.071500px;}
.x43{left:270.135172px;}
.x26{left:279.456750px;}
.x14{left:281.083950px;}
.xf{left:290.456550px;}
.x3b{left:295.237200px;}
.x10{left:296.333700px;}
.x1b{left:299.763750px;}
.x2e{left:308.095800px;}
.x36{left:309.246723px;}
.x2f{left:310.417490px;}
.x33{left:313.116206px;}
.x6{left:315.012300px;}
.x31{left:316.985688px;}
.x30{left:318.920429px;}
.x37{left:320.855171px;}
.x15{left:324.560850px;}
.x16{left:331.803750px;}
.x34{left:335.549282px;}
.x28{left:338.857200px;}
.x32{left:342.504429px;}
.x27{left:344.716950px;}
.x17{left:346.081050px;}
.x38{left:350.243394px;}
.xa{left:353.125950px;}
.x56{left:363.866700px;}
.x1f{left:390.640650px;}
.xb{left:399.640200px;}
.xc{left:406.883100px;}
.x35{left:409.019841px;}
.x1c{left:418.818900px;}
.x20{left:422.917800px;}
.x39{left:429.905125px;}
.x3a{left:433.331100px;}
.x4{left:453.298800px;}
.x3{left:456.430800px;}
.x2{left:460.386150px;}
.x2a{left:473.652150px;}
.x29{left:477.330900px;}
.x57{left:499.929750px;}
.x2c{left:531.828300px;}
.x2b{left:539.654250px;}
.x1d{left:546.378000px;}
.x4e{left:557.477284px;}
@media print{
.v2{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.ls65{letter-spacing:-1.173333pt;}
.ls61{letter-spacing:-1.056000pt;}
.ls53{letter-spacing:-0.997333pt;}
.ls62{letter-spacing:-0.938667pt;}
.ls27{letter-spacing:-0.861867pt;}
.ls9{letter-spacing:-0.853333pt;}
.ls4d{letter-spacing:-0.821333pt;}
.ls54{letter-spacing:-0.762667pt;}
.ls40{letter-spacing:-0.704000pt;}
.ls80{letter-spacing:-0.693333pt;}
.ls2a{letter-spacing:-0.645333pt;}
.ls79{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.624000pt;}
.ls31{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls46{letter-spacing:-0.533333pt;}
.ls33{letter-spacing:-0.528000pt;}
.ls19{letter-spacing:-0.506667pt;}
.ls45{letter-spacing:-0.480000pt;}
.ls2b{letter-spacing:-0.469333pt;}
.ls4e{letter-spacing:-0.432000pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls32{letter-spacing:-0.410667pt;}
.ls5b{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.373333pt;}
.lsd{letter-spacing:-0.354667pt;}
.ls1a{letter-spacing:-0.352000pt;}
.ls36{letter-spacing:-0.336000pt;}
.ls47{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.293333pt;}
.ls66{letter-spacing:-0.266667pt;}
.lse{letter-spacing:-0.253333pt;}
.ls35{letter-spacing:-0.240000pt;}
.ls28{letter-spacing:-0.234667pt;}
.ls72{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.202667pt;}
.ls1b{letter-spacing:-0.176000pt;}
.ls7a{letter-spacing:-0.160000pt;}
.ls5c{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.117333pt;}
.ls71{letter-spacing:-0.106667pt;}
.ls57{letter-spacing:-0.085333pt;}
.ls29{letter-spacing:-0.058667pt;}
.ls78{letter-spacing:-0.053333pt;}
.ls34{letter-spacing:-0.048000pt;}
.ls5d{letter-spacing:-0.042667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.009600pt;}
.ls42{letter-spacing:0.014400pt;}
.ls43{letter-spacing:0.014933pt;}
.ls4a{letter-spacing:0.021867pt;}
.ls7c{letter-spacing:0.026667pt;}
.ls41{letter-spacing:0.029333pt;}
.ls11{letter-spacing:0.050667pt;}
.ls63{letter-spacing:0.053333pt;}
.ls15{letter-spacing:0.058667pt;}
.ls6d{letter-spacing:0.074667pt;}
.ls83{letter-spacing:0.080000pt;}
.ls21{letter-spacing:0.088000pt;}
.ls5{letter-spacing:0.101333pt;}
.ls64{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.117333pt;}
.ls4c{letter-spacing:0.144000pt;}
.ls55{letter-spacing:0.146667pt;}
.ls70{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.176000pt;}
.ls50{letter-spacing:0.186667pt;}
.ls14{letter-spacing:0.202667pt;}
.ls7f{letter-spacing:0.213333pt;}
.ls51{letter-spacing:0.224000pt;}
.ls52{letter-spacing:0.229333pt;}
.ls16{letter-spacing:0.234667pt;}
.ls0{letter-spacing:0.240000pt;}
.ls4b{letter-spacing:0.264000pt;}
.ls69{letter-spacing:0.266667pt;}
.ls30{letter-spacing:0.288000pt;}
.ls2e{letter-spacing:0.293333pt;}
.ls10{letter-spacing:0.304000pt;}
.ls49{letter-spacing:0.305067pt;}
.ls76{letter-spacing:0.320000pt;}
.ls48{letter-spacing:0.322667pt;}
.ls25{letter-spacing:0.352000pt;}
.ls56{letter-spacing:0.354667pt;}
.ls60{letter-spacing:0.381333pt;}
.ls12{letter-spacing:0.405333pt;}
.ls2d{letter-spacing:0.410667pt;}
.ls82{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.430667pt;}
.ls2f{letter-spacing:0.432000pt;}
.ls3{letter-spacing:0.456000pt;}
.ls22{letter-spacing:0.469333pt;}
.ls67{letter-spacing:0.480000pt;}
.ls26{letter-spacing:0.498667pt;}
.ls38{letter-spacing:0.528000pt;}
.ls75{letter-spacing:0.560000pt;}
.ls6a{letter-spacing:0.571733pt;}
.ls24{letter-spacing:0.586667pt;}
.ls5a{letter-spacing:0.624000pt;}
.ls7d{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.645333pt;}
.ls13{letter-spacing:0.658667pt;}
.ls1{letter-spacing:0.672000pt;}
.ls5e{letter-spacing:0.674667pt;}
.ls77{letter-spacing:0.693333pt;}
.ls18{letter-spacing:0.704000pt;}
.ls2{letter-spacing:0.709333pt;}
.lsc{letter-spacing:0.720000pt;}
.ls20{letter-spacing:0.733333pt;}
.ls6c{letter-spacing:0.746667pt;}
.ls39{letter-spacing:0.762667pt;}
.ls3f{letter-spacing:0.786133pt;}
.ls5f{letter-spacing:0.792000pt;}
.ls68{letter-spacing:0.800000pt;}
.ls23{letter-spacing:0.821333pt;}
.ls74{letter-spacing:0.853333pt;}
.ls3a{letter-spacing:0.880000pt;}
.ls4f{letter-spacing:0.893333pt;}
.ls7b{letter-spacing:0.906667pt;}
.ls37{letter-spacing:0.938667pt;}
.ls73{letter-spacing:0.960000pt;}
.ls58{letter-spacing:0.968000pt;}
.ls3b{letter-spacing:0.997333pt;}
.ls59{letter-spacing:1.015467pt;}
.ls1e{letter-spacing:1.056000pt;}
.ls6e{letter-spacing:1.066667pt;}
.ls3e{letter-spacing:1.173333pt;}
.ls3d{letter-spacing:1.349333pt;}
.ls3c{letter-spacing:1.489600pt;}
.ls81{letter-spacing:1.511467pt;}
.ls6f{letter-spacing:1.813333pt;}
.ls6b{letter-spacing:1.905067pt;}
.ls7e{letter-spacing:3.733333pt;}
.ls84{letter-spacing:132.251200pt;}
.ws51{word-spacing:-58.666667pt;}
.ws5f{word-spacing:-15.253333pt;}
.ws90{word-spacing:-15.146667pt;}
.ws50{word-spacing:-14.666667pt;}
.ws5a{word-spacing:-14.608000pt;}
.ws32{word-spacing:-14.490667pt;}
.ws91{word-spacing:-14.400000pt;}
.ws47{word-spacing:-14.373333pt;}
.ws9d{word-spacing:-14.293333pt;}
.ws48{word-spacing:-14.197333pt;}
.wsa0{word-spacing:-14.186667pt;}
.wsa1{word-spacing:-14.133333pt;}
.ws31{word-spacing:-14.080000pt;}
.wsa4{word-spacing:-14.026667pt;}
.wsba{word-spacing:-13.973333pt;}
.ws8c{word-spacing:-13.813333pt;}
.wsbb{word-spacing:-13.760000pt;}
.wsb2{word-spacing:-13.653333pt;}
.ws8f{word-spacing:-13.440000pt;}
.ws8e{word-spacing:-13.408000pt;}
.ws88{word-spacing:-13.386667pt;}
.wsaf{word-spacing:-13.360000pt;}
.ws87{word-spacing:-13.333333pt;}
.ws9c{word-spacing:-13.280000pt;}
.wsa2{word-spacing:-13.226667pt;}
.wsb9{word-spacing:-13.120000pt;}
.ws86{word-spacing:-13.066667pt;}
.ws8b{word-spacing:-13.013333pt;}
.wsa3{word-spacing:-12.960000pt;}
.ws9e{word-spacing:-12.906667pt;}
.wsb0{word-spacing:-12.853333pt;}
.wsb1{word-spacing:-12.800000pt;}
.ws8d{word-spacing:-12.746667pt;}
.ws9f{word-spacing:-12.693333pt;}
.ws3{word-spacing:-12.672000pt;}
.ws14{word-spacing:-12.413333pt;}
.ws2{word-spacing:-12.240000pt;}
.ws34{word-spacing:-11.760000pt;}
.ws1{word-spacing:-11.376000pt;}
.ws6c{word-spacing:-11.120000pt;}
.ws13{word-spacing:-10.453333pt;}
.ws5c{word-spacing:-10.378667pt;}
.ws59{word-spacing:-9.838400pt;}
.ws33{word-spacing:-9.533333pt;}
.ws0{word-spacing:-8.960000pt;}
.wsb6{word-spacing:-3.733333pt;}
.wsad{word-spacing:-0.800000pt;}
.ws1c{word-spacing:-0.762667pt;}
.ws1a{word-spacing:-0.704000pt;}
.ws57{word-spacing:-0.693333pt;}
.ws17{word-spacing:-0.658667pt;}
.ws2a{word-spacing:-0.645333pt;}
.ws8a{word-spacing:-0.640000pt;}
.ws7{word-spacing:-0.624000pt;}
.wsd{word-spacing:-0.608000pt;}
.ws3e{word-spacing:-0.586667pt;}
.ws8{word-spacing:-0.576000pt;}
.ws7e{word-spacing:-0.554667pt;}
.ws3a{word-spacing:-0.528000pt;}
.ws7a{word-spacing:-0.469333pt;}
.ws55{word-spacing:-0.426667pt;}
.ws4b{word-spacing:-0.410667pt;}
.wsb3{word-spacing:-0.373333pt;}
.ws22{word-spacing:-0.352000pt;}
.ws15{word-spacing:-0.304000pt;}
.ws44{word-spacing:-0.293333pt;}
.wsab{word-spacing:-0.266667pt;}
.ws52{word-spacing:-0.234667pt;}
.ws67{word-spacing:-0.224000pt;}
.wsb7{word-spacing:-0.213333pt;}
.ws66{word-spacing:-0.186667pt;}
.ws21{word-spacing:-0.176000pt;}
.ws9a{word-spacing:-0.160000pt;}
.ws77{word-spacing:-0.149333pt;}
.ws3c{word-spacing:-0.144000pt;}
.ws5b{word-spacing:-0.117333pt;}
.ws12{word-spacing:-0.101333pt;}
.ws2e{word-spacing:-0.058667pt;}
.wsb5{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.wsa9{word-spacing:0.053333pt;}
.ws39{word-spacing:0.058667pt;}
.ws7f{word-spacing:0.085333pt;}
.ws97{word-spacing:0.106667pt;}
.ws29{word-spacing:0.117333pt;}
.ws27{word-spacing:0.176000pt;}
.ws93{word-spacing:0.213333pt;}
.ws4d{word-spacing:0.234667pt;}
.ws95{word-spacing:0.266667pt;}
.ws42{word-spacing:0.293333pt;}
.ws19{word-spacing:0.304000pt;}
.ws24{word-spacing:0.352000pt;}
.wsbc{word-spacing:0.373333pt;}
.ws7d{word-spacing:0.384000pt;}
.ws1d{word-spacing:0.410667pt;}
.ws38{word-spacing:0.469333pt;}
.ws53{word-spacing:0.480000pt;}
.ws28{word-spacing:0.528000pt;}
.ws83{word-spacing:0.576000pt;}
.ws56{word-spacing:0.586667pt;}
.ws9{word-spacing:0.624000pt;}
.wsb4{word-spacing:0.640000pt;}
.ws2d{word-spacing:0.645333pt;}
.ws10{word-spacing:0.658667pt;}
.ws1e{word-spacing:0.704000pt;}
.ws26{word-spacing:0.762667pt;}
.ws9b{word-spacing:0.800000pt;}
.ws84{word-spacing:0.816000pt;}
.ws2c{word-spacing:0.821333pt;}
.ws6{word-spacing:0.853333pt;}
.ws1f{word-spacing:0.880000pt;}
.ws58{word-spacing:0.906667pt;}
.ws36{word-spacing:0.938667pt;}
.ws18{word-spacing:0.962667pt;}
.ws35{word-spacing:0.997333pt;}
.ws80{word-spacing:1.008000pt;}
.wsa5{word-spacing:1.013333pt;}
.ws79{word-spacing:1.045333pt;}
.ws20{word-spacing:1.056000pt;}
.ws94{word-spacing:1.066667pt;}
.ws23{word-spacing:1.114667pt;}
.wsa7{word-spacing:1.120000pt;}
.ws3d{word-spacing:1.152000pt;}
.ws40{word-spacing:1.173333pt;}
.ws78{word-spacing:1.194667pt;}
.wsa{word-spacing:1.200000pt;}
.ws11{word-spacing:1.216000pt;}
.ws30{word-spacing:1.232000pt;}
.ws82{word-spacing:1.248000pt;}
.wsf{word-spacing:1.266667pt;}
.ws46{word-spacing:1.290667pt;}
.ws5e{word-spacing:1.296000pt;}
.ws54{word-spacing:1.333333pt;}
.wsb{word-spacing:1.344000pt;}
.ws2f{word-spacing:1.349333pt;}
.wsb8{word-spacing:1.386667pt;}
.wsc{word-spacing:1.392000pt;}
.ws41{word-spacing:1.408000pt;}
.ws96{word-spacing:1.440000pt;}
.ws1b{word-spacing:1.466667pt;}
.wse{word-spacing:1.469333pt;}
.ws99{word-spacing:1.493333pt;}
.ws4c{word-spacing:1.525333pt;}
.wsac{word-spacing:1.546667pt;}
.ws37{word-spacing:1.584000pt;}
.ws92{word-spacing:1.600000pt;}
.ws2b{word-spacing:1.642667pt;}
.ws43{word-spacing:1.701333pt;}
.wsa8{word-spacing:1.706667pt;}
.ws45{word-spacing:1.760000pt;}
.ws3f{word-spacing:1.818667pt;}
.wsa6{word-spacing:1.866667pt;}
.ws4f{word-spacing:1.877333pt;}
.ws81{word-spacing:1.936000pt;}
.wsae{word-spacing:1.973333pt;}
.ws25{word-spacing:1.994667pt;}
.ws49{word-spacing:2.053333pt;}
.ws4e{word-spacing:2.112000pt;}
.ws4a{word-spacing:2.170667pt;}
.ws16{word-spacing:6.333333pt;}
.ws98{word-spacing:11.200000pt;}
.wsaa{word-spacing:13.013333pt;}
.ws3b{word-spacing:31.344000pt;}
.ws63{word-spacing:58.134756pt;}
.ws89{word-spacing:66.666667pt;}
.ws7b{word-spacing:68.861355pt;}
.ws6b{word-spacing:76.206222pt;}
.ws62{word-spacing:78.291911pt;}
.ws64{word-spacing:78.427022pt;}
.ws7c{word-spacing:79.020144pt;}
.ws60{word-spacing:80.774578pt;}
.ws74{word-spacing:113.322311pt;}
.ws65{word-spacing:113.969778pt;}
.ws73{word-spacing:135.562311pt;}
.ws61{word-spacing:144.105067pt;}
.ws5d{word-spacing:176.986311pt;}
.ws6d{word-spacing:191.162311pt;}
.ws6f{word-spacing:193.402311pt;}
.ws70{word-spacing:213.402311pt;}
.ws68{word-spacing:217.041600pt;}
.ws76{word-spacing:246.762311pt;}
.ws85{word-spacing:282.923200pt;}
.ws75{word-spacing:402.629689pt;}
.ws71{word-spacing:410.750044pt;}
.ws72{word-spacing:455.110400pt;}
.ws6e{word-spacing:470.030044pt;}
.ws6a{word-spacing:877.686933pt;}
.ws5{word-spacing:934.784000pt;}
.ws69{word-spacing:988.086933pt;}
._2{margin-left:-902.781867pt;}
._a{margin-left:-29.675200pt;}
._c{margin-left:-18.110400pt;}
._b{margin-left:-16.430400pt;}
._8{margin-left:-14.846400pt;}
._45{margin-left:-12.128000pt;}
._4{margin-left:-10.836267pt;}
._1b{margin-left:-5.160000pt;}
._12{margin-left:-4.266667pt;}
._36{margin-left:-2.964000pt;}
._0{margin-left:-1.707733pt;}
._3{width:0.889067pt;}
._26{width:2.045333pt;}
._46{width:3.754133pt;}
._7{width:6.316267pt;}
._11{width:29.952000pt;}
._5{width:32.000000pt;}
._e{width:32.960000pt;}
._10{width:66.469333pt;}
._20{width:69.254756pt;}
._1a{width:76.993067pt;}
._22{width:80.375111pt;}
._43{width:87.963733pt;}
._25{width:89.547022pt;}
._17{width:94.666311pt;}
._39{width:98.282651pt;}
._23{width:100.666667pt;}
._47{width:103.792533pt;}
._1d{width:112.051733pt;}
._51{width:113.572800pt;}
._4d{width:119.132800pt;}
._19{width:120.761244pt;}
._1c{width:122.587556pt;}
._24{width:125.089778pt;}
._18{width:126.235378pt;}
._48{width:128.475733pt;}
._40{width:129.483733pt;}
._21{width:130.903822pt;}
._4c{width:132.251200pt;}
._16{width:140.069333pt;}
._1e{width:141.569244pt;}
._53{width:143.443733pt;}
._49{width:144.763733pt;}
._38{width:146.681600pt;}
._4e{width:149.805867pt;}
._52{width:151.440533pt;}
._50{width:154.563733pt;}
._1f{width:155.846933pt;}
._d{width:160.767467pt;}
._4f{width:162.560533pt;}
._2d{width:170.782400pt;}
._14{width:179.456000pt;}
._6{width:182.528000pt;}
._4a{width:199.299200pt;}
._34{width:202.282311pt;}
._2c{width:212.302400pt;}
._4b{width:219.064533pt;}
._30{width:224.521600pt;}
._2b{width:228.161600pt;}
._42{width:237.872533pt;}
._13{width:245.670044pt;}
._28{width:254.819200pt;}
._3e{width:260.112533pt;}
._f{width:272.037333pt;}
._15{width:281.333689pt;}
._33{width:284.830044pt;}
._9{width:292.937600pt;}
._3b{width:315.713067pt;}
._37{width:326.914400pt;}
._44{width:343.699200pt;}
._3f{width:365.939733pt;}
._3d{width:382.753600pt;}
._41{width:404.993600pt;}
._3a{width:416.113067pt;}
._3c{width:421.539200pt;}
._35{width:425.590044pt;}
._2f{width:471.470044pt;}
._31{width:482.590044pt;}
._32{width:493.670044pt;}
._27{width:500.582400pt;}
._2e{width:515.190044pt;}
._1{width:574.714667pt;}
._29{width:610.166933pt;}
._2a{width:616.166933pt;}
.fs11{font-size:29.864000pt;}
.fs10{font-size:35.277333pt;}
.fs1{font-size:37.333333pt;}
.fs8{font-size:38.133333pt;}
.fsa{font-size:38.985278pt;}
.fsb{font-size:39.478481pt;}
.fsf{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:43.093333pt;}
.fse{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fsd{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs9{font-size:59.977290pt;}
.fsc{font-size:60.736146pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:78.758533pt;}
.y156{bottom:79.264000pt;}
.yfa{bottom:81.223867pt;}
.y81{bottom:81.259867pt;}
.y97{bottom:81.260000pt;}
.y214{bottom:81.711067pt;}
.y77{bottom:82.656133pt;}
.y13b{bottom:82.962667pt;}
.y1da{bottom:83.322800pt;}
.yb7{bottom:83.517067pt;}
.y21{bottom:84.150933pt;}
.y208{bottom:85.322800pt;}
.y14f{bottom:85.692400pt;}
.y1be{bottom:88.126000pt;}
.y80{bottom:93.926533pt;}
.y96{bottom:93.926667pt;}
.yc3{bottom:93.926800pt;}
.y45{bottom:94.091867pt;}
.y155{bottom:94.597333pt;}
.yf9{bottom:96.557200pt;}
.y1d9{bottom:97.322800pt;}
.y76{bottom:97.989467pt;}
.y13a{bottom:98.296133pt;}
.yb6{bottom:98.850400pt;}
.y207{bottom:99.322800pt;}
.y213{bottom:99.936400pt;}
.y14e{bottom:101.025733pt;}
.y20{bottom:102.817600pt;}
.y1bd{bottom:103.459333pt;}
.y7f{bottom:106.593200pt;}
.y95{bottom:106.593333pt;}
.yc2{bottom:106.593467pt;}
.y44{bottom:109.425200pt;}
.y154{bottom:109.930667pt;}
.y1d8{bottom:111.322800pt;}
.yf8{bottom:111.890533pt;}
.y75{bottom:113.322800pt;}
.y212{bottom:113.516933pt;}
.y139{bottom:113.629467pt;}
.yb5{bottom:114.183733pt;}
.y1f{bottom:116.150933pt;}
.y14d{bottom:116.359067pt;}
.y1bc{bottom:118.792667pt;}
.y7e{bottom:119.259867pt;}
.y94{bottom:119.260000pt;}
.yc1{bottom:119.260133pt;}
.y43{bottom:124.758533pt;}
.y153{bottom:125.264000pt;}
.y1d7{bottom:125.322800pt;}
.yf7{bottom:127.223867pt;}
.y206{bottom:127.322800pt;}
.y111{bottom:127.729867pt;}
.y211{bottom:128.468400pt;}
.y74{bottom:128.656133pt;}
.y138{bottom:128.962800pt;}
.y1e{bottom:129.484267pt;}
.yb4{bottom:129.517067pt;}
.y14c{bottom:131.692400pt;}
.y7d{bottom:131.926533pt;}
.y93{bottom:131.926800pt;}
.y1bb{bottom:134.126000pt;}
.y1d6{bottom:139.322800pt;}
.y42{bottom:140.091867pt;}
.y152{bottom:140.597333pt;}
.y205{bottom:141.322800pt;}
.yf6{bottom:142.557200pt;}
.y1d{bottom:142.817600pt;}
.y110{bottom:143.063200pt;}
.y210{bottom:143.586533pt;}
.y73{bottom:143.989467pt;}
.y137{bottom:144.296133pt;}
.y7c{bottom:144.593200pt;}
.y92{bottom:144.593467pt;}
.yb3{bottom:144.850400pt;}
.y14b{bottom:147.025733pt;}
.y1ba{bottom:149.459333pt;}
.y1d5{bottom:153.322800pt;}
.y204{bottom:155.322800pt;}
.y41{bottom:155.425200pt;}
.y1c{bottom:156.150933pt;}
.y7b{bottom:157.259867pt;}
.y91{bottom:157.260133pt;}
.yf5{bottom:157.890533pt;}
.y10f{bottom:158.396533pt;}
.y20f{bottom:158.704533pt;}
.y72{bottom:159.322800pt;}
.y136{bottom:159.629467pt;}
.yb2{bottom:160.183733pt;}
.y14a{bottom:162.359067pt;}
.y1b9{bottom:164.792667pt;}
.y84{bottom:166.989467pt;}
.y1d4{bottom:167.322800pt;}
.y203{bottom:169.322800pt;}
.y1b{bottom:169.484267pt;}
.y7a{bottom:169.926533pt;}
.y90{bottom:169.926800pt;}
.y40{bottom:170.758533pt;}
.yf4{bottom:173.223867pt;}
.y10e{bottom:173.729867pt;}
.y20e{bottom:173.822667pt;}
.y71{bottom:174.656133pt;}
.y135{bottom:174.962800pt;}
.yb1{bottom:175.517067pt;}
.y149{bottom:177.692400pt;}
.y19e{bottom:178.897600pt;}
.y1b8{bottom:180.126000pt;}
.yc0{bottom:180.263200pt;}
.y1d3{bottom:181.322800pt;}
.y79{bottom:182.593200pt;}
.y1a1{bottom:182.593467pt;}
.y1a{bottom:182.817600pt;}
.y202{bottom:183.322800pt;}
.y3f{bottom:186.091867pt;}
.yf3{bottom:188.557200pt;}
.y20d{bottom:188.940800pt;}
.y10d{bottom:189.063200pt;}
.y19d{bottom:189.564267pt;}
.y70{bottom:189.989467pt;}
.y134{bottom:190.296133pt;}
.y78{bottom:195.259867pt;}
.y1d2{bottom:195.322800pt;}
.y1b7{bottom:195.459333pt;}
.ybf{bottom:195.596533pt;}
.y19{bottom:196.150933pt;}
.y201{bottom:197.322800pt;}
.yb0{bottom:198.517067pt;}
.y19c{bottom:200.230933pt;}
.y3e{bottom:201.425200pt;}
.yf2{bottom:203.890533pt;}
.y20c{bottom:204.058933pt;}
.y10c{bottom:204.396533pt;}
.y6f{bottom:205.322800pt;}
.y133{bottom:205.629467pt;}
.y148{bottom:208.359067pt;}
.y1d1{bottom:209.322800pt;}
.y18{bottom:209.484267pt;}
.y8f{bottom:209.963200pt;}
.y1b6{bottom:210.792667pt;}
.y19b{bottom:210.897600pt;}
.ybe{bottom:210.929867pt;}
.y200{bottom:211.322800pt;}
.y3d{bottom:216.758533pt;}
.y20b{bottom:219.010400pt;}
.yf1{bottom:219.223867pt;}
.y6e{bottom:220.656133pt;}
.y132{bottom:220.962800pt;}
.y17{bottom:222.817600pt;}
.y1d0{bottom:223.322800pt;}
.y147{bottom:223.692400pt;}
.y8e{bottom:225.296533pt;}
.y1ff{bottom:225.322800pt;}
.y1b5{bottom:226.126000pt;}
.ybd{bottom:226.263200pt;}
.y3c{bottom:232.091867pt;}
.y196{bottom:233.399522pt;}
.yf0{bottom:234.557200pt;}
.y6d{bottom:235.989467pt;}
.y20a{bottom:236.069867pt;}
.y16{bottom:236.150933pt;}
.y131{bottom:236.296133pt;}
.yaf{bottom:236.850400pt;}
.y1cf{bottom:237.322800pt;}
.y146{bottom:239.025733pt;}
.y1fe{bottom:239.322800pt;}
.y1b4{bottom:241.459333pt;}
.ybc{bottom:241.596533pt;}
.y130{bottom:245.175467pt;}
.y3b{bottom:247.425200pt;}
.yef{bottom:249.890533pt;}
.y6c{bottom:251.322800pt;}
.y8c{bottom:251.563200pt;}
.y18f{bottom:251.937600pt;}
.yae{bottom:252.183733pt;}
.y1fd{bottom:253.322800pt;}
.y145{bottom:254.359067pt;}
.y209{bottom:254.809200pt;}
.y12f{bottom:255.842133pt;}
.y8b{bottom:255.963200pt;}
.y1b3{bottom:256.792667pt;}
.ybb{bottom:256.929867pt;}
.y1ce{bottom:258.989467pt;}
.y8d{bottom:260.363200pt;}
.y3a{bottom:262.758533pt;}
.y15{bottom:262.818400pt;}
.yee{bottom:265.223867pt;}
.y6b{bottom:266.656133pt;}
.y1fc{bottom:267.322800pt;}
.yad{bottom:267.517067pt;}
.y144{bottom:269.692400pt;}
.y190{bottom:269.915728pt;}
.y197{bottom:271.304404pt;}
.y1b2{bottom:272.126000pt;}
.yba{bottom:272.263200pt;}
.y12e{bottom:273.202000pt;}
.y13f{bottom:273.711200pt;}
.y1a2{bottom:274.656133pt;}
.y39{bottom:278.091867pt;}
.yed{bottom:280.557200pt;}
.y1fb{bottom:281.322800pt;}
.y6a{bottom:281.989467pt;}
.yac{bottom:282.850400pt;}
.y13e{bottom:284.377867pt;}
.y143{bottom:285.025733pt;}
.y8a{bottom:286.629867pt;}
.y1b1{bottom:287.459333pt;}
.y191{bottom:287.475760pt;}
.yb9{bottom:287.596533pt;}
.y198{bottom:287.893856pt;}
.y12d{bottom:288.153467pt;}
.y38{bottom:293.425200pt;}
.y1fa{bottom:295.322800pt;}
.yec{bottom:295.890533pt;}
.y170{bottom:296.894533pt;}
.y69{bottom:297.322800pt;}
.y188{bottom:297.388667pt;}
.yab{bottom:298.183733pt;}
.y142{bottom:300.359067pt;}
.y89{bottom:301.963200pt;}
.y1b0{bottom:302.792667pt;}
.yb8{bottom:302.929867pt;}
.y12c{bottom:303.271600pt;}
.y192{bottom:305.453888pt;}
.y14{bottom:307.485600pt;}
.y37{bottom:308.758533pt;}
.y1f9{bottom:309.322800pt;}
.yeb{bottom:311.223867pt;}
.y68{bottom:312.656133pt;}
.y88{bottom:312.896533pt;}
.yaa{bottom:313.517067pt;}
.y141{bottom:315.692400pt;}
.y87{bottom:317.296533pt;}
.y1af{bottom:318.126000pt;}
.y12b{bottom:318.389733pt;}
.y13{bottom:320.152267pt;}
.y1f8{bottom:323.322800pt;}
.y193{bottom:323.432016pt;}
.y36{bottom:324.091867pt;}
.yea{bottom:326.557200pt;}
.y67{bottom:327.989467pt;}
.y86{bottom:332.629867pt;}
.y12{bottom:332.818933pt;}
.y1ae{bottom:333.459333pt;}
.y12a{bottom:333.507733pt;}
.y1f7{bottom:337.322800pt;}
.y35{bottom:339.425200pt;}
.y194{bottom:340.992048pt;}
.y199{bottom:341.410144pt;}
.ye9{bottom:341.890533pt;}
.y66{bottom:343.322800pt;}
.ya9{bottom:344.183733pt;}
.y11{bottom:345.485600pt;}
.y85{bottom:347.963200pt;}
.y129{bottom:348.625867pt;}
.ye0{bottom:348.776400pt;}
.y1ad{bottom:348.792667pt;}
.y1f6{bottom:351.322800pt;}
.y34{bottom:354.758533pt;}
.ye8{bottom:357.223867pt;}
.y65{bottom:358.656133pt;}
.y195{bottom:358.970176pt;}
.ya8{bottom:359.517067pt;}
.y19a{bottom:360.358852pt;}
.y151{bottom:361.631867pt;}
.y128{bottom:363.744000pt;}
.y1ac{bottom:364.126000pt;}
.y1f5{bottom:365.322800pt;}
.ydf{bottom:367.083067pt;}
.y33{bottom:370.091867pt;}
.ye7{bottom:372.557200pt;}
.y64{bottom:373.989467pt;}
.ya7{bottom:374.850400pt;}
.y127{bottom:378.862133pt;}
.yde{bottom:379.083067pt;}
.y1f4{bottom:379.322800pt;}
.y1ab{bottom:379.459333pt;}
.y18e{bottom:382.808400pt;}
.ye6{bottom:387.890533pt;}
.y63{bottom:389.322800pt;}
.ydd{bottom:391.083067pt;}
.y32{bottom:393.091867pt;}
.y1f3{bottom:393.322800pt;}
.y126{bottom:393.980133pt;}
.y1aa{bottom:394.792667pt;}
.y18d{bottom:396.141733pt;}
.ydc{bottom:403.083067pt;}
.ye5{bottom:403.223867pt;}
.y62{bottom:404.656133pt;}
.ya6{bottom:405.517067pt;}
.y1f2{bottom:407.322800pt;}
.y125{bottom:409.098267pt;}
.y1a9{bottom:410.126000pt;}
.ye4{bottom:418.557200pt;}
.y61{bottom:419.989467pt;}
.ya5{bottom:420.850400pt;}
.y1f1{bottom:421.322800pt;}
.ydb{bottom:423.776000pt;}
.y124{bottom:424.216400pt;}
.y1a8{bottom:425.459333pt;}
.y83{bottom:427.656133pt;}
.y16f{bottom:428.268000pt;}
.y22{bottom:433.719067pt;}
.ye3{bottom:433.890533pt;}
.y60{bottom:435.322800pt;}
.yda{bottom:435.776000pt;}
.y10{bottom:436.042000pt;}
.ya4{bottom:436.183733pt;}
.y171{bottom:436.576800pt;}
.y123{bottom:439.167867pt;}
.y1a7{bottom:440.792667pt;}
.yd9{bottom:447.776000pt;}
.yf{bottom:448.708667pt;}
.ye2{bottom:449.223867pt;}
.y1f0{bottom:449.322800pt;}
.y5f{bottom:450.656133pt;}
.ya3{bottom:451.517067pt;}
.y159{bottom:451.763467pt;}
.y172{bottom:451.763692pt;}
.y18c{bottom:453.324109pt;}
.y1a6{bottom:456.126000pt;}
.y121{bottom:457.322933pt;}
.yd8{bottom:459.776000pt;}
.ye{bottom:461.375333pt;}
.y4a{bottom:463.166000pt;}
.y1ef{bottom:463.322800pt;}
.y15a{bottom:464.013521pt;}
.y173{bottom:464.498809pt;}
.ye1{bottom:464.557200pt;}
.y5e{bottom:465.989467pt;}
.ya2{bottom:466.850400pt;}
.y122{bottom:469.322933pt;}
.y1a5{bottom:471.459333pt;}
.y15b{bottom:476.748638pt;}
.y174{bottom:476.748863pt;}
.y1ee{bottom:477.322800pt;}
.yd7{bottom:480.468933pt;}
.y5d{bottom:481.322800pt;}
.y49{bottom:481.832667pt;}
.ya1{bottom:482.183733pt;}
.y1a4{bottom:486.792667pt;}
.y15c{bottom:488.998692pt;}
.y175{bottom:488.998917pt;}
.y120{bottom:490.084933pt;}
.y1ed{bottom:491.322800pt;}
.yd6{bottom:492.468933pt;}
.y5c{bottom:496.656133pt;}
.ya0{bottom:497.517067pt;}
.y18b{bottom:497.614801pt;}
.y48{bottom:500.499333pt;}
.y15d{bottom:501.733809pt;}
.y176{bottom:501.734035pt;}
.y1a3{bottom:502.126000pt;}
.yd5{bottom:504.468933pt;}
.y1ec{bottom:505.322800pt;}
.y10b{bottom:509.573733pt;}
.y5b{bottom:511.989467pt;}
.y9f{bottom:512.850400pt;}
.y15e{bottom:513.983863pt;}
.y177{bottom:513.984089pt;}
.yd4{bottom:516.468933pt;}
.y1eb{bottom:519.322800pt;}
.y47{bottom:524.675067pt;}
.y15f{bottom:526.233917pt;}
.y178{bottom:526.728025pt;}
.y5a{bottom:527.322800pt;}
.y10a{bottom:527.799067pt;}
.y9e{bottom:528.183733pt;}
.y11f{bottom:528.640133pt;}
.y1ea{bottom:533.322800pt;}
.yd3{bottom:536.500400pt;}
.y109{bottom:538.465733pt;}
.y160{bottom:538.977854pt;}
.y179{bottom:538.978079pt;}
.y59{bottom:542.656133pt;}
.y9d{bottom:543.517067pt;}
.y11e{bottom:546.865467pt;}
.y1e9{bottom:547.322800pt;}
.yd2{bottom:548.500400pt;}
.y1cc{bottom:549.318533pt;}
.y18a{bottom:550.248583pt;}
.y161{bottom:551.227908pt;}
.y17a{bottom:551.228133pt;}
.yd{bottom:551.931733pt;}
.y108{bottom:556.691067pt;}
.y58{bottom:557.989467pt;}
.y9c{bottom:558.850400pt;}
.yd1{bottom:560.500400pt;}
.y1e8{bottom:561.322800pt;}
.y11d{bottom:562.335733pt;}
.y162{bottom:563.477962pt;}
.y17b{bottom:563.963251pt;}
.yc{bottom:564.598400pt;}
.y31{bottom:565.322800pt;}
.y107{bottom:567.357733pt;}
.y1cb{bottom:567.874000pt;}
.yd0{bottom:572.500400pt;}
.y57{bottom:573.322800pt;}
.y9b{bottom:574.183733pt;}
.y1e7{bottom:575.322800pt;}
.y17c{bottom:576.213305pt;}
.y163{bottom:576.221899pt;}
.yb{bottom:577.265067pt;}
.y11c{bottom:577.287200pt;}
.y106{bottom:578.024400pt;}
.y1ca{bottom:582.992000pt;}
.y30{bottom:583.989467pt;}
.ycf{bottom:584.500400pt;}
.y17d{bottom:588.463359pt;}
.y164{bottom:588.471953pt;}
.y56{bottom:588.656133pt;}
.y1e6{bottom:589.322800pt;}
.y9a{bottom:589.517067pt;}
.y11b{bottom:592.238667pt;}
.ya{bottom:593.265067pt;}
.y1a0{bottom:596.322800pt;}
.y104{bottom:596.810800pt;}
.y2f{bottom:597.322800pt;}
.y1c9{bottom:598.110133pt;}
.y17e{bottom:601.198476pt;}
.y165{bottom:601.207070pt;}
.y1e5{bottom:603.322800pt;}
.y55{bottom:603.989467pt;}
.y99{bottom:604.850400pt;}
.y105{bottom:608.810667pt;}
.y103{bottom:608.810800pt;}
.y9{bottom:609.265067pt;}
.y11a{bottom:609.298267pt;}
.y1c8{bottom:610.110133pt;}
.y2e{bottom:610.656133pt;}
.y19f{bottom:611.656133pt;}
.y17f{bottom:613.448530pt;}
.y166{bottom:613.457124pt;}
.yce{bottom:615.870533pt;}
.y1e4{bottom:617.322800pt;}
.y54{bottom:619.322800pt;}
.y98{bottom:620.183733pt;}
.y2d{bottom:623.989467pt;}
.y167{bottom:625.707178pt;}
.y180{bottom:626.192467pt;}
.y119{bottom:626.587733pt;}
.y102{bottom:627.047067pt;}
.ycd{bottom:627.870533pt;}
.y1c7{bottom:628.346400pt;}
.y1e3{bottom:631.322800pt;}
.y53{bottom:634.656133pt;}
.y2c{bottom:637.322800pt;}
.y168{bottom:638.442295pt;}
.y181{bottom:638.442521pt;}
.y101{bottom:639.047067pt;}
.ycc{bottom:639.870533pt;}
.y8{bottom:641.265067pt;}
.y118{bottom:641.539200pt;}
.y140{bottom:642.322800pt;}
.y1e2{bottom:645.322800pt;}
.y1c6{bottom:647.244000pt;}
.y52{bottom:649.989467pt;}
.y2b{bottom:650.656133pt;}
.y169{bottom:650.692349pt;}
.y182{bottom:650.692575pt;}
.ycb{bottom:651.870533pt;}
.y189{bottom:653.381867pt;}
.y7{bottom:653.931733pt;}
.y117{bottom:656.490667pt;}
.y1cd{bottom:657.656133pt;}
.y100{bottom:657.944667pt;}
.y1e1{bottom:659.322800pt;}
.y16a{bottom:662.942403pt;}
.y183{bottom:663.436511pt;}
.yca{bottom:663.870533pt;}
.y2a{bottom:663.989467pt;}
.y51{bottom:665.322800pt;}
.y1c5{bottom:666.141600pt;}
.y6{bottom:669.931733pt;}
.y1e0{bottom:673.322800pt;}
.y116{bottom:673.550267pt;}
.y16b{bottom:675.677521pt;}
.y184{bottom:675.686565pt;}
.yff{bottom:675.818000pt;}
.y29{bottom:677.322800pt;}
.y1c4{bottom:678.141600pt;}
.y50{bottom:680.656133pt;}
.yc9{bottom:684.563467pt;}
.y1df{bottom:687.322800pt;}
.y16c{bottom:687.927575pt;}
.y185{bottom:687.936619pt;}
.y82{bottom:688.322800pt;}
.y28{bottom:690.656133pt;}
.y115{bottom:690.839733pt;}
.y4f{bottom:695.989467pt;}
.y1c3{bottom:696.377867pt;}
.yc8{bottom:696.563467pt;}
.yfe{bottom:700.384933pt;}
.y16d{bottom:700.662692pt;}
.y186{bottom:700.671737pt;}
.y1de{bottom:701.322800pt;}
.y27{bottom:703.989467pt;}
.y114{bottom:705.791200pt;}
.yc7{bottom:708.563467pt;}
.y5{bottom:709.931733pt;}
.y4e{bottom:711.322800pt;}
.y1c2{bottom:711.496133pt;}
.y16e{bottom:712.912746pt;}
.y187{bottom:712.921791pt;}
.y1dd{bottom:715.322800pt;}
.y26{bottom:717.322800pt;}
.yc6{bottom:720.563467pt;}
.y113{bottom:720.742667pt;}
.yfd{bottom:724.621200pt;}
.y1c0{bottom:726.614267pt;}
.y4d{bottom:726.656133pt;}
.y1dc{bottom:729.322800pt;}
.y4{bottom:731.265067pt;}
.yfc{bottom:736.621200pt;}
.y112{bottom:737.802133pt;}
.yc5{bottom:738.127200pt;}
.y1c1{bottom:738.614267pt;}
.y4c{bottom:741.989467pt;}
.y13d{bottom:743.044533pt;}
.y1db{bottom:743.322800pt;}
.y25{bottom:743.989467pt;}
.y158{bottom:744.461867pt;}
.y3{bottom:752.598400pt;}
.yfb{bottom:755.029733pt;}
.y150{bottom:756.298533pt;}
.y13c{bottom:756.377867pt;}
.yc4{bottom:756.541467pt;}
.y24{bottom:757.322800pt;}
.y1bf{bottom:757.486533pt;}
.y157{bottom:757.795200pt;}
.y4b{bottom:798.173600pt;}
.y2{bottom:798.210133pt;}
.y23{bottom:798.251067pt;}
.y1{bottom:810.610133pt;}
.h29{height:22.004285pt;}
.h26{height:25.992918pt;}
.h28{height:26.458000pt;}
.hb{height:26.693333pt;}
.h13{height:28.039704pt;}
.h15{height:28.394435pt;}
.h20{height:28.746667pt;}
.h2{height:30.506667pt;}
.h3{height:30.520889pt;}
.h24{height:30.800000pt;}
.hf{height:30.811733pt;}
.h19{height:31.445333pt;}
.h25{height:32.853333pt;}
.h6{height:34.320000pt;}
.h7{height:34.336000pt;}
.h1e{height:34.570667pt;}
.h1f{height:35.354667pt;}
.ha{height:36.226667pt;}
.h9{height:36.243556pt;}
.h22{height:37.040000pt;}
.h23{height:37.880000pt;}
.h1a{height:38.133333pt;}
.h21{height:39.509333pt;}
.h8{height:40.128000pt;}
.h1d{height:40.405333pt;}
.he{height:41.946667pt;}
.hd{height:41.966222pt;}
.hc{height:42.357333pt;}
.h12{height:43.137963pt;}
.h17{height:43.683761pt;}
.h1b{height:44.586667pt;}
.h10{height:44.865333pt;}
.h1c{height:44.865867pt;}
.h5{height:45.760000pt;}
.h11{height:49.045333pt;}
.h16{height:59.546667pt;}
.h14{height:59.795313pt;}
.h4{height:61.013333pt;}
.h18{height:66.645333pt;}
.h27{height:307.322667pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w2{width:434.645333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x18{left:58.582667pt;}
.x2d{left:84.094533pt;}
.x1{left:85.001600pt;}
.x24{left:86.173200pt;}
.x58{left:92.676533pt;}
.x4c{left:96.381467pt;}
.x4d{left:97.413329pt;}
.x59{left:98.511467pt;}
.x5{left:105.039333pt;}
.x55{left:110.706000pt;}
.x4f{left:112.089069pt;}
.x54{left:115.822069pt;}
.x50{left:122.877439pt;}
.x51{left:128.671055pt;}
.x19{left:130.393600pt;}
.x53{left:134.494535pt;}
.x52{left:137.809439pt;}
.x4b{left:140.896933pt;}
.x23{left:154.090667pt;}
.x22{left:156.179467pt;}
.x44{left:159.220409pt;}
.x21{left:160.553600pt;}
.xd{left:162.547067pt;}
.x1e{left:163.831333pt;}
.x47{left:167.060796pt;}
.xe{left:168.818533pt;}
.x8{left:171.731867pt;}
.x49{left:172.952111pt;}
.x45{left:173.939876pt;}
.x3d{left:181.868457pt;}
.x25{left:188.173333pt;}
.x46{left:191.578543pt;}
.x11{left:192.497200pt;}
.x1a{left:194.645600pt;}
.x12{left:198.935333pt;}
.x42{left:203.519920pt;}
.x3c{left:204.516505pt;}
.x7{left:211.592800pt;}
.x9{left:213.378800pt;}
.x40{left:222.058159pt;}
.x3e{left:227.446771pt;}
.x3f{left:228.919600pt;}
.x48{left:230.313055pt;}
.x41{left:232.941216pt;}
.x4a{left:235.207785pt;}
.x13{left:239.174667pt;}
.x43{left:240.120153pt;}
.x26{left:248.406000pt;}
.x14{left:249.852400pt;}
.xf{left:258.183600pt;}
.x3b{left:262.433067pt;}
.x10{left:263.407733pt;}
.x1b{left:266.456667pt;}
.x2e{left:273.862933pt;}
.x36{left:274.885976pt;}
.x2f{left:275.926657pt;}
.x33{left:278.325516pt;}
.x6{left:280.010933pt;}
.x31{left:281.765056pt;}
.x30{left:283.484826pt;}
.x37{left:285.204596pt;}
.x15{left:288.498533pt;}
.x16{left:294.936667pt;}
.x34{left:298.266029pt;}
.x28{left:301.206400pt;}
.x32{left:304.448381pt;}
.x27{left:306.415067pt;}
.x17{left:307.627600pt;}
.x38{left:311.327461pt;}
.xa{left:313.889733pt;}
.x56{left:323.437067pt;}
.x1f{left:347.236133pt;}
.xb{left:355.235733pt;}
.xc{left:361.673867pt;}
.x35{left:363.573192pt;}
.x1c{left:372.283467pt;}
.x20{left:375.926933pt;}
.x39{left:382.137889pt;}
.x3a{left:385.183200pt;}
.x4{left:402.932267pt;}
.x3{left:405.716267pt;}
.x2{left:409.232133pt;}
.x2a{left:421.024133pt;}
.x29{left:424.294133pt;}
.x57{left:444.382000pt;}
.x2c{left:472.736267pt;}
.x2b{left:479.692667pt;}
.x1d{left:485.669333pt;}
.x4e{left:495.535363pt;}
}




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